Fixing a lucene indexing bug when a URI of an individual is changed. NIHVIVO-1192
This commit is contained in:
parent
f98b5edac5
commit
b27045fe6c
2 changed files with 9 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue