Browse Source

fix typo

tags/2.0.1
Jonathan Cobb 4 years ago
parent
commit
f804680fd9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/java/org/cobbzilla/util/reflect/ReflectionUtil.java

+ 1
- 1
src/main/java/org/cobbzilla/util/reflect/ReflectionUtil.java View File

@@ -933,7 +933,7 @@ public class ReflectionUtil {
case "long": return (long) 0;
case "float": return (float) 0;
case "double": return (double) 0;
default: return die("instantiate: unrecognized primitive type: "+clazz.getName());
default: return die("getNullArgument: unrecognized primitive type: "+clazz.getName());
}
}
return null;


Loading…
Cancel
Save