We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5795d7 commit b896555Copy full SHA for b896555
src/main/java/org/scijava/usage/DefaultUsageService.java
@@ -72,7 +72,7 @@ public void clearStats() {
72
73
@Override
74
public UsageStats getUsage(final Object o) {
75
- if (!(o instanceof Identifiable) || !(o instanceof Locatable)) {
+ if (!(o instanceof Identifiable && o instanceof Locatable)) {
76
// only track objects with an identifier and a location
77
return null;
78
}
0 commit comments