We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 694a484 commit 1933a52Copy full SHA for 1933a52
1 file changed
src/main/java/org/scijava/command/CommandModuleItem.java
@@ -159,7 +159,7 @@ public List<T> getChoices() {
159
if (choices.length == 0) return super.getChoices();
160
161
final ArrayList<T> choiceList = new ArrayList<T>();
162
- for (final String choice : getParameter().choices()) {
+ for (final String choice : choices) {
163
choiceList.add(tValue(choice));
164
}
165
return choiceList;
0 commit comments