We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93fbbfe + 5d984f6 commit 0a72abbCopy full SHA for 0a72abb
forge/src/main/java/org/embeddedt/modernfix/platform/forge/ModernFixPlatformHooksImpl.java
@@ -153,6 +153,8 @@ public void injectPlatformSpecificHacks() {
153
noGroupField.setAccessible(true);
154
InjectorGroupInfo noGroup = (InjectorGroupInfo)noGroupField.get(null);
155
groupMembersField.set(noGroup, new DummyList<>());
156
+ } catch(NoSuchFieldException ignored) {
157
+ // Connector will replace FML's mixin with one which already has the fix, don't bother logging
158
} catch(RuntimeException | ReflectiveOperationException e) {
159
ModernFixMixinPlugin.instance.logger.error("Failed to patch mixin memory leak", e);
160
}
0 commit comments