summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/util/Tuple.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/tylermurphy/hideAndSeek/util/Tuple.java')
-rw-r--r--src/main/java/net/tylermurphy/hideAndSeek/util/Tuple.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/java/net/tylermurphy/hideAndSeek/util/Tuple.java b/src/main/java/net/tylermurphy/hideAndSeek/util/Tuple.java
deleted file mode 100644
index 5a40ff8..0000000
--- a/src/main/java/net/tylermurphy/hideAndSeek/util/Tuple.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package net.tylermurphy.hideAndSeek.util;
-
-public class Tuple<L, C, R> {
-
- private final L left;
- private final C center;
- private final R right;
-
- public Tuple(L left, C center, R right) {
- this.left = left;
- this.center = center;
- this.right = right;
- }
-
- public L getLeft() {
- return left;
- }
-
- public C getCenter() {
- return center;
- }
-
- public R getRight() {
- return right;
- }
-
-}