fengxiang
2018-02-02 788489c7e95352a11cf5ec40a7a9c7277e5cc0f3
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) {