(String value, String prefix)
| 302 | } |
| 303 | |
| 304 | private static boolean matches(String value, String prefix) { |
| 305 | return prefix == null || prefix.isBlank() || value.toLowerCase().startsWith(prefix.toLowerCase()); |
| 306 | } |
| 307 | |
| 308 | private record CommandOption(String value, String description, String display) { |
| 309 | } |
no outgoing calls
no test coverage detected