diff options
author | basdxz <tudurap.com@gmail.com> | 2019-03-10 08:14:32 +0000 |
---|---|---|
committer | basdxz <tudurap.com@gmail.com> | 2019-03-10 08:14:32 +0000 |
commit | e01db77fc9868f5be2d2996122d184e3930065cb (patch) | |
tree | eddab70de514b4d46f8f47d0a0f2e29ad5004e19 /src/main/java | |
parent | 4cd1a33c1eabda81996aa21f706212eb442eb503 (diff) | |
download | GT5-Unofficial-e01db77fc9868f5be2d2996122d184e3930065cb.tar.gz GT5-Unofficial-e01db77fc9868f5be2d2996122d184e3930065cb.tar.bz2 GT5-Unofficial-e01db77fc9868f5be2d2996122d184e3930065cb.zip |
Fix typo
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Capacitor.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Capacitor.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Capacitor.java index 7648bfbe4a..7277819b9b 100644 --- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Capacitor.java +++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/hatch/GT_MetaTileEntity_Hatch_Capacitor.java @@ -166,14 +166,14 @@ public class GT_MetaTileEntity_Hatch_Capacitor extends GT_MetaTileEntity_Hatch { } @Override - public int compareTo(GT_MetaTileEntity_Hatch_Capacitor.CapacitorComponent o) { + public int compareTo(CapacitorComponent o) { return unlocalizedName.compareTo(o.unlocalizedName); } @Override public boolean equals(Object obj) { - if(obj instanceof GT_MetaTileEntity_Hatch_Capacitor.CapacitorComponent) { - return compareTo((GT_MetaTileEntity_Hatch_Capacitor.CapacitorComponent) obj) == 0; + if(obj instanceof CapacitorComponent) { + return compareTo((CapacitorComponent) obj) == 0; } return false; } |