Skip to content

Commit 56e2407

Browse files
spotlessApply (#313)
Co-authored-by: GitHub Actions <>
1 parent 1b68efb commit 56e2407

File tree

99 files changed

+348
-332
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+348
-332
lines changed

src/main/java/com/github/gtexpert/core/GTExpertMod.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
import net.minecraftforge.fml.common.eventhandler.EventPriority;
1919
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
2020

21+
import gregtech.GTInternalTags;
22+
import gregtech.api.GregTechAPI;
23+
import gregtech.api.cover.CoverDefinition;
24+
2125
import com.github.gtexpert.core.api.GTEValues;
2226
import com.github.gtexpert.core.api.util.GTELog;
2327
import com.github.gtexpert.core.api.util.Mods;
@@ -26,10 +30,6 @@
2630
import com.github.gtexpert.core.modules.GTEModuleManager;
2731
import com.github.gtexpert.core.modules.GTEModules;
2832

29-
import gregtech.GTInternalTags;
30-
import gregtech.api.GregTechAPI;
31-
import gregtech.api.cover.CoverDefinition;
32-
3333
@Mod(modid = GTEValues.MODID,
3434
name = GTEValues.MODNAME,
3535
acceptedMinecraftVersions = "[1.12.2,1.13)",

src/main/java/com/github/gtexpert/core/api/capability/MultiblockRecipeLogicNoCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package com.github.gtexpert.core.api.capability;
22

3-
import com.github.gtexpert.core.integration.deda.recipemaps.RecipeMapDraconicFusion;
4-
53
import gregtech.api.capability.impl.MultiblockRecipeLogic;
64
import gregtech.api.metatileentity.multiblock.RecipeMapMultiblockController;
75

6+
import com.github.gtexpert.core.integration.deda.recipemaps.RecipeMapDraconicFusion;
7+
88
/**
99
* This recipe logic disables cache used for speeding up recipe check.
1010
* The reason is we do some special things inside {@link RecipeMapDraconicFusion},

src/main/java/com/github/gtexpert/core/api/recipes/GTERecipeMaps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import net.minecraft.init.SoundEvents;
44

5-
import com.github.gtexpert.core.api.gui.GTEGuiTextures;
6-
75
import gregtech.api.gui.GuiTextures;
86
import gregtech.api.gui.widgets.ProgressWidget;
97
import gregtech.api.recipes.RecipeMap;
108
import gregtech.api.recipes.builders.SimpleRecipeBuilder;
119
import gregtech.core.sound.GTSoundEvents;
1210

11+
import com.github.gtexpert.core.api.gui.GTEGuiTextures;
12+
1313
import crafttweaker.annotations.ZenRegister;
1414
import stanhebben.zenscript.annotations.ZenExpansion;
1515
import stanhebben.zenscript.annotations.ZenProperty;

src/main/java/com/github/gtexpert/core/api/unification/material/GTEMaterialFlags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import static gregtech.api.unification.material.info.MaterialFlags.*;
44

5-
import com.github.gtexpert.core.api.util.Mods;
6-
75
import gregtech.api.fluids.FluidBuilder;
86
import gregtech.api.fluids.store.FluidStorageKeys;
97
import gregtech.api.unification.material.Materials;
108
import gregtech.api.unification.material.properties.*;
119
import gregtech.api.unification.ore.OrePrefix;
1210

11+
import com.github.gtexpert.core.api.util.Mods;
12+
1313
public class GTEMaterialFlags {
1414

1515
public static void init() {

src/main/java/com/github/gtexpert/core/api/unification/material/GTEMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.github.gtexpert.core.api.unification.material;
22

3+
import gregtech.api.unification.material.Material;
4+
35
import com.github.gtexpert.core.api.GTEValues;
46
import com.github.gtexpert.core.api.unification.material.ingredients.*;
57
import com.github.gtexpert.core.api.util.Mods;
68

7-
import gregtech.api.unification.material.Material;
8-
99
/**
1010
* Material Registration.
1111
* <p>

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/AEFirstDegreeMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
import static gregtech.api.unification.material.Materials.*;
88
import static gregtech.api.unification.material.info.MaterialFlags.*;
99

10-
import com.github.gtexpert.core.api.GTEValues;
11-
1210
import gregtech.api.fluids.FluidBuilder;
1311
import gregtech.api.unification.material.Material;
1412
import gregtech.api.unification.material.Materials;
1513
import gregtech.api.unification.material.info.MaterialIconSet;
1614
import gregtech.api.unification.material.properties.BlastProperty.GasTier;
1715
import gregtech.api.unification.ore.OrePrefix;
1816

17+
import com.github.gtexpert.core.api.GTEValues;
18+
1919
public class AEFirstDegreeMaterials {
2020

2121
/**

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/AvaritiaFirstDegreeMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
import static gregtech.api.unification.material.Materials.*;
88
import static gregtech.api.unification.material.info.MaterialFlags.*;
99

10-
import com.github.gtexpert.core.api.unification.material.info.GTEMaterialIconSet;
11-
1210
import gregtech.api.fluids.FluidBuilder;
1311
import gregtech.api.unification.material.Material;
1412
import gregtech.api.unification.material.properties.ToolProperty;
1513

14+
import com.github.gtexpert.core.api.unification.material.info.GTEMaterialIconSet;
15+
1616
public class AvaritiaFirstDegreeMaterials {
1717

1818
public static void init() {

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/DEFirstDegreeMaterials.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
import static gregtech.api.unification.material.Materials.*;
88
import static gregtech.api.unification.material.info.MaterialFlags.*;
99

10-
import com.github.gtexpert.core.api.GTEValues;
11-
import com.github.gtexpert.core.api.util.Mods;
12-
1310
import gregtech.api.fluids.FluidBuilder;
1411
import gregtech.api.unification.material.Material;
1512
import gregtech.api.unification.material.info.MaterialIconSet;
@@ -18,6 +15,9 @@
1815

1916
import gregicality.multiblocks.api.fluids.GCYMFluidStorageKeys;
2017

18+
import com.github.gtexpert.core.api.GTEValues;
19+
import com.github.gtexpert.core.api.util.Mods;
20+
2121
public class DEFirstDegreeMaterials {
2222

2323
/**

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/EIOFirstDegreeMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
import static gregtech.api.unification.material.Materials.*;
77
import static gregtech.api.unification.material.info.MaterialFlags.*;
88

9-
import com.github.gtexpert.core.api.GTEValues;
10-
119
import gregtech.api.fluids.FluidBuilder;
1210
import gregtech.api.unification.material.Material;
1311
import gregtech.api.unification.material.info.MaterialIconSet;
1412
import gregtech.api.unification.material.properties.BlastProperty.GasTier;
1513

14+
import com.github.gtexpert.core.api.GTEValues;
15+
1616
public class EIOFirstDegreeMaterials {
1717

1818
/**

src/main/java/com/github/gtexpert/core/api/util/GTEUtility.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
import org.jetbrains.annotations.NotNull;
1515

16-
import com.github.gtexpert.core.api.GTEValues;
17-
import com.github.gtexpert.core.common.items.GTEMetaItems;
18-
1916
import gregtech.api.GTValues;
2017
import gregtech.api.items.metaitem.MetaItem;
2118
import gregtech.api.unification.OreDictUnifier;
@@ -24,6 +21,9 @@
2421
import gregtech.api.unification.stack.MaterialStack;
2522
import gregtech.common.items.MetaItems;
2623

24+
import com.github.gtexpert.core.api.GTEValues;
25+
import com.github.gtexpert.core.common.items.GTEMetaItems;
26+
2727
public class GTEUtility {
2828

2929
public static @NotNull ItemStack getModItem(String modID, String itemName) {

0 commit comments

Comments
 (0)