fangdong sun 8 years ago
parent
commit
c3f008a46a
  1. 3
      designer/src/com/fr/design/mainframe/ActiveKeyGenerator.java

3
designer/src/com/fr/design/mainframe/ActiveKeyGenerator.java

@ -195,9 +195,10 @@ public class ActiveKeyGenerator {
//获取char对应的int值 //获取char对应的int值
private static int getCharIntValue(char charStr){ private static int getCharIntValue(char charStr){
if (!StableUtils.isNum(charStr)) { if (!BaseUtils.isNum(charStr)) {
return 0; return 0;
} }
return Character.getNumericValue(charStr); return Character.getNumericValue(charStr);
} }

Loading…
Cancel
Save