Skip to content

Commit

Permalink
rollback changing field name
Browse files Browse the repository at this point in the history
  • Loading branch information
styner9 committed Aug 20, 2024
1 parent 61a4e96 commit 4087277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/kohsuke/github/GHUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class GHUser extends GHPerson {
protected String ldap_dn;

/** The suspended_at */
private String suspended_at;
private String suspendedAt;

/**
* Gets keys.
Expand Down Expand Up @@ -276,7 +276,7 @@ public Optional<String> getLdapDn() throws IOException {
*/
public Date getSuspendedAt() throws IOException {
super.populate();
return GitHubClient.parseDate(suspended_at);
return GitHubClient.parseDate(suspendedAt);
}

/**
Expand Down

0 comments on commit 4087277

Please sign in to comment.