Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman committed Sep 15, 2024
1 parent 9f172d3 commit 46deac2
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/main/java/org/kohsuke/github/GitUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,4 @@ public Date getDate() {
public GitUser() {
// Empty constructor for Jackson binding
}

/**
* Instantiates a new git user.
*
* @param user
* the user
*/
public GitUser(GitUser user) {
// Copy constructor to convert to GHCommit.GHAuthor
name = user.getName();
email = user.getEmail();
date = user.getDate().toString();
username = user.getUsername();
}
}

0 comments on commit 46deac2

Please sign in to comment.