Skip to content

Commit

Permalink
Final fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Apr 5, 2024
1 parent e04af04 commit 4dddf22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public byte[] transform(byte[] bytes) {
cc.getMethod("getOrCreateCache", "(Ljava/lang/String;)Lcodechicken/asm/ClassHierarchyManager$SuperCache;").setBody(
"""
{
SuperCache cache;
codechicken.asm.ClassHierarchyManager.SuperCache cache;
if (!superclasses.containsKey($1)) {
cache = new SuperCache();
cache = new codechicken.asm.ClassHierarchyManager.SuperCache();
superclasses.put($1, cache);
} else {
cache = superclasses.get($1);
Expand Down

0 comments on commit 4dddf22

Please sign in to comment.