We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfb0659 commit a6bf3cfCopy full SHA for a6bf3cf
src/main/java/org/scijava/display/DisplayPostprocessor.java
@@ -68,9 +68,11 @@ public void process(final Module module) {
68
if (displayService == null) return;
69
70
for (final ModuleItem<?> outputItem : module.getInfo().outputs()) {
71
+ if (module.isOutputResolved(outputItem.getName())) continue;
72
final Object value = outputItem.getValue(module);
73
final String name = defaultName(outputItem);
- handleOutput(name, value);
74
+ final boolean resolved = handleOutput(name, value);
75
+ if (resolved) module.resolveOutput(name);
76
}
77
78
0 commit comments