X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fdata%2FProfile.java;h=255dacb21126fc1bc454540e91ab84a6d007a668;hb=628936b67423d4e26d9c990ab1bb44ad788e5b3f;hp=18ec602e7c10b393414f3cd4f31b2b6835bd03d2;hpb=c81560515806933fcf632cafa8cdc3da7dc165e5;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/data/Profile.java b/src/main/java/net/pterodactylus/sone/data/Profile.java index 18ec602..255dacb 100644 --- a/src/main/java/net/pterodactylus/sone/data/Profile.java +++ b/src/main/java/net/pterodactylus/sone/data/Profile.java @@ -24,17 +24,10 @@ package net.pterodactylus.sone.data; */ public class Profile { - /** The name of the user this profile belongs to. */ - private final String username; - /** * Creates a new profile. - * - * @param username - * The name of the user this profile belongs to */ - public Profile(String username) { - this.username = username; + public Profile() { } /** @@ -44,16 +37,6 @@ public class Profile { * The profile to copy */ public Profile(Profile profile) { - this.username = profile.username; - } - - /** - * Returns the name of the user this profile belongs to. - * - * @return The name of the user this profile belongs to - */ - public String getUsername() { - return username; } }