diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-07-16 19:13:55 +0200 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-07-16 19:13:55 +0200 |
commit | 9eca233df8a72a4dc64d396d467f2ee099469be8 (patch) | |
tree | 6fbc37f4d76dca5fd2082da958c5287cc23e2406 /src/main | |
parent | 07291ba30ae01b119cf43f7b957921a31addbd95 (diff) | |
download | GT5-Unofficial-9eca233df8a72a4dc64d396d467f2ee099469be8.tar.gz GT5-Unofficial-9eca233df8a72a4dc64d396d467f2ee099469be8.tar.bz2 GT5-Unofficial-9eca233df8a72a4dc64d396d467f2ee099469be8.zip |
version increase, codestyle fixes
Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
Former-commit-id: 18023016c0c5e6c11babbc64de516f8c5ca561e0
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/crossmod/GTpp/loader/RadioHatchCompat.java | 6 |
1 files changed, 3 insertions, 3 deletions
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<Object,Integer> 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; } |