summaryrefslogtreecommitdiff
path: root/sources/utils/VSPair.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-24 16:47:25 +0000
committerPaul Buetow <paul@buetow.org>2008-05-24 16:47:25 +0000
commit9f0d5c8015f4504bc8400cbb4247f38d9df62768 (patch)
tree5e5256f3ffe7810df3f873dbfeca86484b0629b6 /sources/utils/VSPair.java
parent7040b1acc44805ab7208fa3975242c656cbc95a2 (diff)
new protocol editor works.
Diffstat (limited to 'sources/utils/VSPair.java')
-rw-r--r--sources/utils/VSPair.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/sources/utils/VSPair.java b/sources/utils/VSPair.java
deleted file mode 100644
index d642a18..0000000
--- a/sources/utils/VSPair.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package utils;
-
-public final class VSPair<A,B> {
- private A a;
- private B b;
-
- public VSPair(A a, B b) {
- this.a = a;
- this.b = b;
- }
-
- public A getA() {
- return a;
- }
-
- public B getB() {
- return b;
- }
-}