Small fix in nullablilty handling
This commit is contained in:
@@ -37,7 +37,7 @@ public class TypeInfo<T> implements JetObject {
|
||||
if (!theClass.isAssignableFrom(other.theClass)) {
|
||||
return false;
|
||||
}
|
||||
if (nullable != other.nullable) {
|
||||
if (nullable && !other.nullable) {
|
||||
return false;
|
||||
}
|
||||
if (typeParameters != null) {
|
||||
|
||||
Reference in New Issue
Block a user