Add null check for ClassInfo objects
This commit is contained in:
parent
c6cb0acd3c
commit
5ca9485f0b
|
|
@ -49,6 +49,8 @@ public class ClassInfoManager {
|
|||
if(entry.getKey().equals("java/lang/Object"))
|
||||
return false;
|
||||
ClassInfo mixinClz = entry.getValue();
|
||||
if(mixinClz == null)
|
||||
return true;
|
||||
try {
|
||||
if(mixinClz.isMixin()) {
|
||||
// clear classNode in MixinInfo.State
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user