This commit is contained in:
Adam
2015-05-10 15:44:43 -04:00
parent ba7486b98b
commit 2edf9d2117

View File

@@ -117,7 +117,7 @@ public class NameAndType extends PoolEntry
public boolean isNonVoid()
{
if (this.getName().equals("<init>") || this.getName().equals("<cinit>"))
if (this.getName().equals("<init>") || this.getName().equals("<clinit>"))
return true;
return !signature.getReturnValue().equals("V");
}