Doesn't execute all paths correctly

This commit is contained in:
Adam
2015-02-08 16:35:58 -05:00
parent d00e5b03e1
commit 4dc6bfc949
22 changed files with 160 additions and 42 deletions

View File

@@ -83,6 +83,8 @@ public class NameAndType extends PoolEntry
public boolean isNonVoid()
{
java.lang.String methodRefType = this.getDescriptor();
if (this.getName().equals("<init>"))
return true;
return !methodRefType.endsWith(")V");
}
}