fengxiang
2018-02-06 f4ed03e33cd777996c697894c4075128546c3a74
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) {