Skip to content

Commit 51a7503

Browse files
committed
Reformat code
Took 1 second
1 parent f4c4332 commit 51a7503

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

custom-ore-generator/src/main/java/de/derfrzocker/custom/ore/generator/CustomOreGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void onEnable() {
8484

8585
getCommand("oregen").setExecutor(new OreGenCommand(CustomOreGeneratorServiceSupplier.INSTANCE, this, messages, permissions));
8686

87-
if(getServer().getPluginManager().getPlugin("ItemMods") != null){
87+
if (getServer().getPluginManager().getPlugin("ItemMods") != null) {
8888
CustomOreGeneratorServiceSupplier.INSTANCE.get().registerCustomData(ItemModsCustomData.INSTANCE);
8989
}
9090

impl/v1_13_R1/src/main/java/de/derfrzocker/custom/ore/generator/impl/v1_13_R1/customdata/TickBlockApplier_v1_13_R1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void apply(@NotNull final OreConfig oreConfig, @NotNull final Object loca
3333

3434
final boolean tickBlock = (boolean) objectOptional.get();
3535

36-
if(!tickBlock)
36+
if (!tickBlock)
3737
return;
3838

3939
generatorAccess.y(blockPosition).k().a(blockPosition, null, -1, null);

impl/v1_14_R1/src/main/java/de/derfrzocker/custom/ore/generator/impl/v1_14_R1/customdata/TickBlockApplier_v1_14_R1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void apply(@NotNull final OreConfig oreConfig, @NotNull final Object loca
3333

3434
final boolean tickBlock = (boolean) objectOptional.get();
3535

36-
if(!tickBlock)
36+
if (!tickBlock)
3737
return;
3838

3939
generatorAccess.w(blockPosition).n().a(blockPosition, null, -1, null);

0 commit comments

Comments
 (0)