aboutsummaryrefslogtreecommitdiff
path: root/Pair.java
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2020-12-29 00:22:44 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2020-12-29 00:22:44 +0100
commitd9e2c4bb66e73cc83ee1e21186d851866c46dacd (patch)
tree480f6447b6dd85a0223b3bef1e230bb92d2adde7 /Pair.java
parent7c23f453d166d396451504e26fbb385afc0c4c13 (diff)
Creating the diagram and finishing the report.
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;}
-}