提交 bbef5680 authored 作者: Thomas Mueller's avatar Thomas Mueller

Reflection utilities (bugfix)

上级 d00f220f
...@@ -765,7 +765,7 @@ public class DataType { ...@@ -765,7 +765,7 @@ public class DataType {
*/ */
public static int getTypeFromClass(Class < ? > x) { public static int getTypeFromClass(Class < ? > x) {
// TODO refactor: too many if/else in functions, can reduce! // TODO refactor: too many if/else in functions, can reduce!
if (x == null) { if (x == null || Void.TYPE == x) {
return Value.NULL; return Value.NULL;
} }
if (x.isPrimitive()) { if (x.isPrimitive()) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论