fengxiang
2018-01-26 60163c2fb5098fc522f8e80b131128d2c9a33e42
src/main/java/com/moral/common/util/StringUtils.java
@@ -48,7 +48,6 @@
   }
   public static Object stringToObject4Type(Class<?> type,String value) throws Exception{
      Object result = value;
      if (type == double.class || type == Double.class) {
         result = Double.parseDouble(value);
      } else if (type == float.class || type == Float.class) {