You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, this obfuscated check is not needed in Cleanroom, it should be 26 in both dev and prod
Second, HashMap.computeIfAbsent() from here throws ConcurrentModificationException if called recursively in newer java, it should be changed to a manual null check
I could patch all of them by Mixin or ASM, but it's a bad idea to patch mods that still maintaining
The text was updated successfully, but these errors were encountered:
First, this obfuscated check is not needed in Cleanroom, it should be 26 in both dev and prod
Second,
HashMap.computeIfAbsent()
from here throwsConcurrentModificationException
if called recursively in newer java, it should be changed to a manual null checkI could patch all of them by Mixin or ASM, but it's a bad idea to patch mods that still maintaining
The text was updated successfully, but these errors were encountered: