diff options
Diffstat (limited to 'Week4/src/oo15loipe/Punt.java')
-rw-r--r-- | Week4/src/oo15loipe/Punt.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Week4/src/oo15loipe/Punt.java b/Week4/src/oo15loipe/Punt.java index 1939c45..2c94f1f 100644 --- a/Week4/src/oo15loipe/Punt.java +++ b/Week4/src/oo15loipe/Punt.java @@ -70,8 +70,4 @@ public class Punt { public String toString () { return "(" + x + "," + y + ")"; } - - public Punt add(Punt plus) { - return new Punt(x + plus.getX(), y + plus.getY()); - } } |