Checkstyle

This commit is contained in:
Clément Fournier
2020-03-20 03:00:43 +01:00
parent ee4257d8fc
commit fa39505f5a

View File

@ -23,7 +23,7 @@ public class UnnecessaryWrapperObjectCreationRule extends AbstractJavaRule {
private static final Set<String> PREFIX_SET = setOf("Byte.valueOf", "Short.valueOf",
"Integer.valueOf", "Long.valueOf", "Float.valueOf", "Double.valueOf", "Character.valueOf");
private static final Set<String> SUFFIX_SET = setOf( "toString", "byteValue",
private static final Set<String> SUFFIX_SET = setOf("toString", "byteValue",
"shortValue", "intValue", "longValue", "floatValue", "doubleValue", "charValue");
@Override