xufenglei
2017-12-27 1a73abc088caa0f5873d8143a6bd71937263a413
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) {