Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bca5091

Browse files
authored
Update ProfileFactory.java
1 parent 7f1ba09 commit bca5091

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

FriendAPI/src/main/java/org/utilitymods/friendapi/profiles/ProfileFactory.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public Profile createProfile(@NotNull UUID uuid, @NotNull Affinity affinity) thr
4343
URL url = new URL("https://sessionserver.mojang.com/session/minecraft/profile/" + uuid.toString().replace("-", ""));
4444
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
4545
JsonObject jsonObject = new JsonParser().parse(new InputStreamReader(conn.getInputStream())).getAsJsonObject();
46-
FriendManager.LOGGER.debug("Called Mojang API, response: " + jsonObject.toString());
4746
String name = jsonObject.get("name").getAsString();
4847
return createProfile(name, uuid, affinity);
4948
} catch (Exception e) {

0 commit comments

Comments
 (0)