See gh-26673
This commit is contained in:
Rebwon 2021-03-13 21:32:01 +09:00 committed by Stephane Nicoll
parent 6670db9b58
commit 2daefedf5e
2 changed files with 2 additions and 2 deletions

View File

@ -515,7 +515,7 @@ public class TypeDescriptor implements Serializable {
for (Annotation ann : getAnnotations()) {
builder.append("@").append(ann.annotationType().getName()).append(' ');
}
builder.append(getResolvableType().toString());
builder.append(getResolvableType());
return builder.toString();
}

View File

@ -181,7 +181,7 @@ class JOptCommandLinePropertySourceTests {
}
public enum OptionEnum {
VAL_1;
VAL_1
}
}