We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce7b69 commit 93c340fCopy full SHA for 93c340f
src/main/java/org/scijava/AbstractUIDetails.java
@@ -105,7 +105,8 @@ public String getTitle() {
105
106
// use the unique identifier, if available
107
if (this instanceof Identifiable) {
108
- return ((Identifiable) this).getIdentifier();
+ final String id = ((Identifiable) this).getIdentifier();
109
+ if (id != null) return id;
110
}
111
112
// use class name as a last resort
0 commit comments