Propagating interfaceFullyResolved flag from parent to child interfaces.

This commit is contained in:
Izzat Bahadirov 2013-05-02 17:15:09 -04:00
parent d3ac72fd67
commit 063862d44c

View File

@ -135,6 +135,9 @@ public class ClassProto implements TypeProto {
interfaces.put(superInterface.getType(), superInterface); interfaces.put(superInterface.getType(), superInterface);
} }
} }
if (!interfaceProto.interfacesFullyResolved) {
interfacesFullyResolved = false;
}
} }
} }
} catch (UnresolvedClassException ex) { } catch (UnresolvedClassException ex) {