This commit is contained in:
Redkale
2017-03-21 12:45:41 +08:00
parent aacda5d35e
commit 77f8d442b2

View File

@@ -659,6 +659,8 @@ public final class EntityInfo<T> {
o = ((Number) o).byteValue();
} else if (t == char.class) {
o = (char) ((Number) o).intValue();
} else if (t == boolean.class) {
o = (Boolean) o;
}
} else if (t == int.class) {
o = 0;