[DS-2909] Fix EPerson netId setter

This commit is contained in:
KevinVdV
2015-11-20 12:34:36 +01:00
parent 440c26c861
commit 94c60a6224

View File

@@ -198,10 +198,10 @@ public class EPerson extends DSpaceObject implements DSpaceObjectLegacySupport
/** /**
* Set the EPerson's netid * Set the EPerson's netid
* *
* @param s * @param netid
* the new netid * the new netid
*/ */
public void setNetid(String s) { public void setNetid(String netid) {
this.netid = netid; this.netid = netid;
setModified(); setModified();
} }