X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=cms%2Forg.argeo.slc.support%2Fsrc%2Forg%2Fargeo%2Fslc%2Fdiff%2FDiffIssueKey.java;fp=cms%2Forg.argeo.slc.support%2Fsrc%2Forg%2Fargeo%2Fslc%2Fdiff%2FDiffIssueKey.java;h=0000000000000000000000000000000000000000;hb=6fc94d69efe089414ac9e63bde3efab1cbf7b7ca;hp=c9dde85cbaf134584bb62dd705cfb204b413ba83;hpb=b36c62642bd0db11b3133b369cc026fd4b7a1ec6;p=gpl%2Fargeo-slc.git diff --git a/cms/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssueKey.java b/cms/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssueKey.java deleted file mode 100644 index c9dde85cb..000000000 --- a/cms/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssueKey.java +++ /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; - } -}