Currently, FileListPreprocessor implements its own logic to get a suitable File[] input (and it doesn't respect autofill=false annotations):
|
if (result != null) { |
|
// second File parameter; abort |
|
return null; |
|
} |
Let's instead extend AbstractSingleInputPreprocessor to harmonize the logic.
Currently,
FileListPreprocessorimplements its own logic to get a suitableFile[]input (and it doesn't respectautofill=falseannotations):scijava-common/src/main/java/org/scijava/ui/FileListPreprocessor.java
Lines 84 to 87 in 46ca0d0
Let's instead extend
AbstractSingleInputPreprocessorto harmonize the logic.