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.
1 parent 20be8d0 commit 673851fCopy full SHA for 673851f
common/src/main/java/org/embeddedt/modernfix/searchtree/JEIRuntimeCapturer.java
@@ -24,7 +24,8 @@ public ResourceLocation getPluginUid() {
24
25
@Override
26
public void onRuntimeAvailable(IJeiRuntime jeiRuntime) {
27
- runtimeHandle = (JeiRuntime)jeiRuntime;
+ if (jeiRuntime instanceof JeiRuntime)
28
+ runtimeHandle = (JeiRuntime)jeiRuntime;
29
}
30
31
0 commit comments