Skip to content

Commit

Permalink
Merge pull request #277 from rhels/patch-1
Browse files Browse the repository at this point in the history
Updated Date was wrong
  • Loading branch information
kohsuke committed Jun 3, 2016
2 parents 37c4731 + baedad8 commit 9ab6d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/GHPerson.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public Date getCreatedAt() throws IOException {

public Date getUpdatedAt() throws IOException {
populate();
return super.getCreatedAt();
return super.getUpdatedAt();
}

/**
Expand Down

0 comments on commit 9ab6d57

Please sign in to comment.