]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - legacy/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssueKey.java
Remove legacy
[gpl/argeo-slc.git] / legacy / org.argeo.slc.support / src / org / argeo / slc / diff / DiffIssueKey.java
diff --git a/legacy/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssueKey.java b/legacy/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssueKey.java
deleted file mode 100644 (file)
index c9dde85..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-package org.argeo.slc.diff;
-
-/** Intermediate class that can hold the key to be displayed. */
-public abstract class DiffIssueKey extends DiffIssue {
-       /** The position of this issue. */
-       protected DiffKey key;
-
-       /** Constructor without key */
-       public DiffIssueKey(DiffPosition position) {
-               super(position);
-       }
-
-       /** Constructor with key */
-       public DiffIssueKey(DiffPosition position, DiffKey key) {
-               super(position);
-               this.key = key;
-       }
-
-       public Object getKey() {
-               return key;
-       }
-
-       @Override
-       public String toString() {
-               if (key != null) {
-                       return key.toString();
-               } else {
-                       return "";
-               }
-       }
-
-       // Hibernate
-       @SuppressWarnings("unused")
-       private void setKey(DiffKey key) {
-               this.key = key;
-       }
-}