Skip to content

Commit

Permalink
refactor: update core function
Browse files Browse the repository at this point in the history
- Update regex of package paths

Signed-off-by: Hiroshi Miura <[email protected]>
  • Loading branch information
miurahr committed Sep 29, 2023
1 parent e58deee commit 8ed0ec4
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@ public Contributor(String name, String url) {
this.url = url;
}

Contributor(String name) {
public Contributor(String name) {
this(name, null);
}

@Override
public String toString() {
return name;
}

public String getName() {
return name;
}

public String getUrl() {
return url;
}

@Override
public String toString() {
return name;
}
}

0 comments on commit 8ed0ec4

Please sign in to comment.