File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/scijava/convert Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3131
3232package org .scijava .convert ;
3333
34- import java .util .Set ;
34+ import java .util .Collection ;
3535
3636import org .scijava .plugin .AbstractHandlerPlugin ;
3737
@@ -83,7 +83,7 @@ public Object convert(final ConversionRequest request) {
8383 }
8484
8585 @ Override
86- public void populateInputs ( Set <Object > objects ) {
86+ public void populateInputCandidates ( final Collection <Object > objects ) {
8787 // No-op
8888 }
8989
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ public Collection<Object> getCompatibleInputs(Class<?> dest) {
107107
108108 for (final Converter c : getInstances ()) {
109109 if (dest .isAssignableFrom (c .getOutputType ())) {
110- c .populateInputs (objects );
110+ c .populateInputCandidates (objects );
111111 }
112112 }
113113
You can’t perform that action at this time.
0 commit comments