Fixing a lucene indexing bug when a URI of an individual is changed. NIHVIVO-1192

This commit is contained in:
bdc34 2010-10-06 21:52:15 +00:00
parent f98b5edac5
commit b27045fe6c
2 changed files with 9 additions and 1 deletions

View file

@ -480,4 +480,11 @@ public class IndividualImpl extends BaseResourceBean implements Individual, Comp
}
}
public String toString(){
if( getURI() == null ){
return "uninitialized, null URI";
}else{
return getURI() + " " + getName();
}
}
}