We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df022fa commit 94404b6Copy full SHA for 94404b6
1 file changed
scijava-ops-engine/src/main/java/org/scijava/ops/engine/matcher/simplify/FocusedOpInfo.java
@@ -226,14 +226,12 @@ public StructInstance<?> createOpInstance(List<?> dependencies) {
226
private static int ioIndex(Type cls) {
227
var method = FunctionalInterfaces.functionalMethodOf(cls);
228
var params = method.getAnnotatedParameterTypes();
229
- for(int i = 0; i < params.length; i++) {
230
- if (params[i].isAnnotationPresent(Container.class))
231
- return i;
+ for (int i = 0; i < params.length; i++) {
+ if (params[i].isAnnotationPresent(Container.class)) return i;
232
}
233
return -1;
234
235
236
-
237
/**
238
* Calls {@link #resolvePathway} for each pair of simplifier and focuser.
239
*
0 commit comments