NIHVIVO-1920 return statement was missing, allowing the logic to "fall through" to the next test.

This commit is contained in:
jeb228 2011-01-26 18:54:39 +00:00
parent 10fa0622f2
commit 4e9e3b98b3

View file

@ -130,6 +130,7 @@ public class SelfEditingIdentifierFactory implements IdentifierBundleFactory {
if (uri == null) { if (uri == null) {
log.debug("Could not find an Individual with a netId of " log.debug("Could not find an Individual with a netId of "
+ username); + username);
return null;
} }
Individual ind = indDao.getIndividualByURI(uri); Individual ind = indDao.getIndividualByURI(uri);