aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-02-29 19:33:00 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-02-29 19:33:00 +1000
commit6245b6a3eaf1ce475f6624da97ab3f04dcfd35f8 (patch)
treeb8dab0dae8673f54ed5ff80a5bedfcfe4830cc6b /src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java
parentbcccdaf05ee909ba98f096d9822113bed8f283cd (diff)
downloadGT5-Unofficial-6245b6a3eaf1ce475f6624da97ab3f04dcfd35f8.tar.gz
GT5-Unofficial-6245b6a3eaf1ce475f6624da97ab3f04dcfd35f8.tar.bz2
GT5-Unofficial-6245b6a3eaf1ce475f6624da97ab3f04dcfd35f8.zip
V0.9.2 Release - Removed dev features and some messy code to push a 0.9.2 snapshop codebase.
Diffstat (limited to 'src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java')
-rw-r--r--src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java b/src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java
deleted file mode 100644
index afaa97eb00..0000000000
--- a/src/Java/miscutil/enderio/conduit/GregTech/GtOutput.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package miscutil.enderio.conduit.GregTech;
-
-import net.minecraftforge.common.util.ForgeDirection;
-import crazypants.util.BlockCoord;
-
-public class GtOutput {
-
- final ForgeDirection dir;
- final BlockCoord location;
-
- public GtOutput(BlockCoord bc, ForgeDirection dir) {
- this.dir = dir;
- this.location = bc;
- }
-
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((location == null) ? 0 : location.hashCode());
- result = prime * result + ((dir == null) ? 0 : dir.hashCode());
- return result;
- }
-
- @Override
- public boolean equals(Object obj) {
- if(this == obj)
- return true;
- if(obj == null)
- return false;
- if(getClass() != obj.getClass())
- return false;
- GtOutput other = (GtOutput) obj;
- if(location == null) {
- if(other.location != null)
- return false;
- } else if(!location.equals(other.location))
- return false;
- if(dir != other.dir)
- return false;
- return true;
- }
-
- @Override
- public String toString() {
- return "GasOutput [dir=" + dir + ", location=" + location + "]";
- }
-
-} \ No newline at end of file