Skip to content

Commit 8ebadd0

Browse files
committed
spotless
1 parent f9a12bf commit 8ebadd0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/main/java/gregtech/api/modules/IGregTechModule.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ default void registerPackets() {}
5757
/**
5858
* As the class gets subscribed, not any specific instance, event handlers must be static!
5959
*
60-
* @return A list of classes to subscribe to the Forge Event Bus, {@link net.minecraftforge.common.MinecraftForge#EVENT_BUS}.
60+
* @return A list of classes to subscribe to the Forge Event Bus,
61+
* {@link net.minecraftforge.common.MinecraftForge#EVENT_BUS}.
6162
*/
6263
default @NotNull List<Class<?>> getEventBusSubscribers() {
6364
return Collections.emptyList();
@@ -66,7 +67,8 @@ default void registerPackets() {}
6667
/**
6768
* As the class gets subscribed, not any specific instance, event handlers must be static!
6869
*
69-
* @return A list of classes to subscribe to the Forge Terrain Gen Bus, {@link net.minecraftforge.common.MinecraftForge#TERRAIN_GEN_BUS}.
70+
* @return A list of classes to subscribe to the Forge Terrain Gen Bus,
71+
* {@link net.minecraftforge.common.MinecraftForge#TERRAIN_GEN_BUS}.
7072
*/
7173
default @NotNull List<Class<?>> getTerrainGenBusSubscribers() {
7274
return Collections.emptyList();
@@ -75,7 +77,8 @@ default void registerPackets() {}
7577
/**
7678
* As the class gets subscribed, not any specific instance, event handlers must be static!
7779
*
78-
* @return A list of classes to subscribe to the Forge Ore Gen Bus, {@link net.minecraftforge.common.MinecraftForge#ORE_GEN_BUS}.
80+
* @return A list of classes to subscribe to the Forge Ore Gen Bus,
81+
* {@link net.minecraftforge.common.MinecraftForge#ORE_GEN_BUS}.
7982
*/
8083
default @NotNull List<Class<?>> getOreGenBusSubscribers() {
8184
return Collections.emptyList();

0 commit comments

Comments
 (0)