We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f172d3 commit 46deac2Copy full SHA for 46deac2
src/main/java/org/kohsuke/github/GitUser.java
@@ -63,18 +63,4 @@ public Date getDate() {
63
public GitUser() {
64
// Empty constructor for Jackson binding
65
}
66
-
67
- /**
68
- * Instantiates a new git user.
69
- *
70
- * @param user
71
- * the user
72
- */
73
- public GitUser(GitUser user) {
74
- // Copy constructor to convert to GHCommit.GHAuthor
75
- name = user.getName();
76
- email = user.getEmail();
77
- date = user.getDate().toString();
78
- username = user.getUsername();
79
- }
80
0 commit comments