style: use character instead of string, for better performance (PR #503)

This commit is contained in:
Ahmed Ashour
2019-03-24 08:05:26 +01:00
committed by skylot
parent 6e66dc25c8
commit 11cee083ba
72 changed files with 116 additions and 116 deletions
@@ -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
}