From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- ihl/handpump/XYZ.java | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 ihl/handpump/XYZ.java (limited to 'ihl/handpump/XYZ.java') diff --git a/ihl/handpump/XYZ.java b/ihl/handpump/XYZ.java deleted file mode 100644 index 9a2627e..0000000 --- a/ihl/handpump/XYZ.java +++ /dev/null @@ -1,26 +0,0 @@ -package ihl.handpump; - -public class XYZ { - public int x; - public int y; - public int z; - - public XYZ(int x1,int y1,int z1) - { - this.x=x1; - this.y=y1; - this.z=z1; - } - - @Override - public boolean equals(Object obj) - { - if(obj instanceof XYZ) - { - XYZ xyz2 = (XYZ) obj; - return (this.x==xyz2.x && this.y==xyz2.y && this.z==xyz2.z); - } - return false; - } - -} -- cgit v1.2.3