style: use character instead of string, for better performance (PR #503)
This commit is contained in:
@@ -90,7 +90,7 @@ public class JCommanderWrapper<T> {
|
||||
if (fieldType == int.class) {
|
||||
try {
|
||||
int val = f.getInt(args);
|
||||
opt.append(" (default: ").append(val).append(")");
|
||||
opt.append(" (default: ").append(val).append(')');
|
||||
} catch (Exception e) {
|
||||
// ignore
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user