diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-09-21 01:38:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-21 01:38:28 +0200 |
commit | c10272e0e358a233ed0ce7d591e9e43ca7ffa26c (patch) | |
tree | a097f2307d43a5c3d77a698b3c01eae801d35c6c /src/main/java/bartworks/system/material | |
parent | e567c18792be9fe623ec777b40f3cbc36572b78e (diff) | |
download | GT5-Unofficial-c10272e0e358a233ed0ce7d591e9e43ca7ffa26c.tar.gz GT5-Unofficial-c10272e0e358a233ed0ce7d591e9e43ca7ffa26c.tar.bz2 GT5-Unofficial-c10272e0e358a233ed0ce7d591e9e43ca7ffa26c.zip |
Delete more reflection (#3233)
Diffstat (limited to 'src/main/java/bartworks/system/material')
-rw-r--r-- | src/main/java/bartworks/system/material/CircuitGeneration/CircuitImprintLoader.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/main/java/bartworks/system/material/CircuitGeneration/CircuitImprintLoader.java b/src/main/java/bartworks/system/material/CircuitGeneration/CircuitImprintLoader.java index 8e04f770f8..ed08d3ef29 100644 --- a/src/main/java/bartworks/system/material/CircuitGeneration/CircuitImprintLoader.java +++ b/src/main/java/bartworks/system/material/CircuitGeneration/CircuitImprintLoader.java @@ -282,14 +282,7 @@ public class CircuitImprintLoader { BWCoreStaticReplacementMethodes.clearRecentlyUsedRecipes(); RecipeMaps.slicerRecipes.getBackend() .removeRecipes(gtrecipeWorldCache); - recipeWorldCache.forEach(r -> { - try { - BWUtil.getGTBufferedRecipeList() - .remove(r); - } catch (Exception e) { - e.printStackTrace(); - } - }); + GTModHandler.sBufferRecipeList.removeAll(recipeWorldCache); recipeWorldCache.clear(); gtrecipeWorldCache.clear(); } |