From: David ‘Bombe’ Roden Date: Thu, 14 Oct 2010 04:15:19 +0000 (+0200) Subject: Use traditional getter method name. X-Git-Tag: 0.1-RC1~449 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=5395541c338c2057ec3d381f38d73071d3a38753;p=Sone.git Use traditional getter method name. --- diff --git a/src/main/java/net/pterodactylus/sone/data/Profile.java b/src/main/java/net/pterodactylus/sone/data/Profile.java index b1040b3..22e43c3 100644 --- a/src/main/java/net/pterodactylus/sone/data/Profile.java +++ b/src/main/java/net/pterodactylus/sone/data/Profile.java @@ -42,7 +42,7 @@ public class Profile { * * @return The name of the user this profile belongs to */ - public String username() { + public String getUsername() { return username; }