Skip to content

Commit

Permalink
method names should by camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
janinko committed Aug 31, 2012
1 parent fff3272 commit 4e27d1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/kohsuke/github/GHSmallUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class GHSmallUser {
}


public URL getAvatar_url() {
public URL getAvatarUrl() {
return GitHub.parseURL(avatar_url);
}

Expand All @@ -53,7 +53,7 @@ public URL getApiUrl() {
return GitHub.parseURL(url);
}

public String getGravatar_id() {
public String getGravatarId() {
return gravatar_id;
}

Expand Down

0 comments on commit 4e27d1b

Please sign in to comment.