From 9eca233df8a72a4dc64d396d467f2ee099469be8 Mon Sep 17 00:00:00 2001 From: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> Date: Tue, 16 Jul 2019 19:13:55 +0200 Subject: version increase, codestyle fixes Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> Former-commit-id: 18023016c0c5e6c11babbc64de516f8c5ca561e0 --- .../github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java b/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java index 8721026957..1c48eae294 100644 --- a/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java +++ b/src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java @@ -141,7 +141,7 @@ public class RadioHatchCompat implements Runnable { ownerItems.replace(ui,bartworks,gtpp); String tanslate = it.getUnlocalizedName()+".name="+RadioHatchCompat.localizedName.get(mats)+" Rod"; - TranslateSet.add(tanslate); + RadioHatchCompat.TranslateSet.add(tanslate); DebugLog.log(tanslate); DebugLog.log("Generate: " + RadioHatchCompat.rod + RadioHatchCompat.unlocalizedName.get(mats)); @@ -178,11 +178,11 @@ public class RadioHatchCompat implements Runnable { static final HashMap BUFFER = new HashMap<>(); - public GTPPRadAdapter(Object m) { + GTPPRadAdapter(Object m) { this.m = m; } - public GTPPRadAdapter(int amount, Object m) { + GTPPRadAdapter(int amount, Object m) { this.amount = (byte) amount; this.m = m; } -- cgit