This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Util / Namer.java
diff --git a/Robust/src/Util/Namer.java b/Robust/src/Util/Namer.java
deleted file mode 100644 (file)
index 9616e73..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package Util;
-
-public class Namer {
-  public Namer() {
-  }
-
-  public String nodeLabel(GraphNode gn) {
-    return gn.getTextLabel();
-  }
-
-  public String nodeOption(GraphNode gn) {
-    return gn.dotnodeparams;
-  }
-
-  public String edgeLabel(Edge e) {
-    return e.getLabel();
-  }
-
-  public String edgeOption(Edge e) {
-    return e.dotnodeparams;
-  }
-}