This commit is contained in:
地平线
2015-07-13 19:35:35 +08:00
parent 57591870e7
commit 97e7b44c55

View File

@@ -67,7 +67,7 @@ public abstract class Sncp {
StringBuilder sb = new StringBuilder();
for (Class clzz : params) {
String s = clzz.getSimpleName();
sb.append(s.substring(0, s.length() > 1 ? 2 : 0));
sb.append(s.substring(0, s.length() > 1 ? 2 : 1));
}
return method.getName() + sb + Integer.toString(params.length, 36);
}