Only 2 warnings left

This commit is contained in:
Shevchik 2013-12-15 15:28:06 +04:00
parent 4f00ab70b1
commit 8f247ec6ce

View File

@ -265,9 +265,9 @@ public abstract class ReferenceType extends Type {
// every ArrayType? // every ArrayType?
} }
if (((this instanceof ObjectType) && ((ObjectType) this) if (((this instanceof ObjectType) && ((ObjectType) this)
.referencesInterface()) .referencesInterfaceExact())
|| ((t instanceof ObjectType) && ((ObjectType) t) || ((t instanceof ObjectType) && ((ObjectType) t)
.referencesInterface())) { .referencesInterfaceExact())) {
return Type.OBJECT; return Type.OBJECT;
// TODO: The above line is correct comparing to the vmspec2. But one // TODO: The above line is correct comparing to the vmspec2. But one
// could // could