#538 Interface are sometimes dynamic fixed

This commit is contained in:
Honfika
2014-03-16 21:13:57 +01:00
parent 8044f7f13e
commit c7c7cb226e

View File

@@ -79,7 +79,7 @@ public class InstanceInfo {
if (isFinal()) {
modifiers += "final ";
}
if (isDynamic()) {
if (!isInterface() && isDynamic()) {
modifiers += "dynamic ";
}
String objType = "class ";