fix for for KT-259

This commit is contained in:
Alex Tkachman
2011-08-31 23:15:00 +02:00
parent ec31f991c0
commit 9e9959f953
3 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,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) {