Skip to content

Commit 2c5b795

Browse files
authored
Fix JetBrains annotation in module info not being runtime optional (static) (#67)
1 parent e7503dd commit 2c5b795

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/module-info.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
requires cpw.mods.modlauncher;
1212
requires net.minecraftforge.forgespi;
1313
requires org.apache.logging.log4j;
14-
requires org.jetbrains.annotations;
1514
requires org.openjdk.nashorn;
1615
requires org.objectweb.asm.util;
1716

17+
requires static org.jetbrains.annotations;
18+
1819
provides net.minecraftforge.forgespi.coremod.ICoreModProvider
1920
with net.minecraftforge.coremod.CoreModProvider;
2021
}

0 commit comments

Comments
 (0)