(final String message, final Collection<T> choices)
| 49 | } |
| 50 | |
| 51 | public static <T> T one(final String message, final Collection<T> choices) { |
| 52 | return one(message, choices, null, null); |
| 53 | } |
| 54 | |
| 55 | public static <T> T one(final String message, final Collection<T> choices, T selected, FSerializableFunction<T, String> display) { |
| 56 | if (choices == null || choices.isEmpty()) { |
no test coverage detected