aboutsummaryrefslogtreecommitdiff
path: root/Pair.java
diff options
context:
space:
mode:
Diffstat (limited to 'Pair.java')
-rw-r--r--Pair.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/Pair.java b/Pair.java
deleted file mode 100644
index d7648d0..0000000
--- a/Pair.java
+++ /dev/null
@@ -1,11 +0,0 @@
-public class Pair<S, T> {
- public final S x;
- public final T y;
-
- public Pair(S x, T y) {
- this.x = x;
- this.y = y;
- }
- public S getX(){return x;}
- public T getY(){return y;}
-}