Skip to content

Commit

Permalink
[DS-2909] Fix EPerson netId setter
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVdV committed Nov 20, 2015
1 parent 440c26c commit 94c60a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dspace-api/src/main/java/org/dspace/eperson/EPerson.java
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ public String getNetid()
/**
* Set the EPerson's netid
*
* @param s
* @param netid
* the new netid
*/
public void setNetid(String s) {
public void setNetid(String netid) {
this.netid = netid;
setModified();
}
Expand Down

0 comments on commit 94c60a6

Please sign in to comment.