Add attribute conversion tests

This commit is contained in:
RatzzFatzz
2025-12-04 23:28:54 +01:00
parent 181c718e7a
commit aa5fd26b32
2 changed files with 50 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ public class AttributeConfigConverter implements CommandLine.ITypeConverter<Attr
* @throws CommandLine.TypeConversionException if the input string is invalid or contains invalid language codes
*/
@Override
public AttributeConfig convert(String s) throws Exception {
public AttributeConfig convert(String s) {
validateInput(s);
String[] split = s.split(SEPARATOR);