]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssue.java
Clarify SLC project structure.
[gpl/argeo-slc.git] / org.argeo.slc.support / src / org / argeo / slc / diff / DiffIssue.java
diff --git a/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssue.java b/org.argeo.slc.support/src/org/argeo/slc/diff/DiffIssue.java
deleted file mode 100644 (file)
index b390d68..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-package org.argeo.slc.diff;
-
-/** The root class for issues which happened during a diff. */
-public abstract class DiffIssue implements Comparable<DiffIssue> {
-       /** The position of this issue. */
-       // Was final and is not anymore in order to persist in hibernate
-       protected DiffPosition position;
-
-       // hibernate
-       private long id;
-
-       /** Constructor */
-       public DiffIssue(DiffPosition position) {
-               super();
-               this.position = position;
-       }
-
-       public int compareTo(DiffIssue o) {
-               return position.compareTo(o.position);
-       }
-
-       /** The position of this issue within the test file */
-       public DiffPosition getPosition() {
-               return position;
-       }
-
-       // Hibernate
-       @SuppressWarnings("unused")
-       private void setId(long id) {
-               this.id = id;
-       }
-
-       @SuppressWarnings("unused")
-       private long getId() {
-               return id;
-       }
-
-       @SuppressWarnings("unused")
-       private void setPosition(DiffPosition position) {
-               this.position = position;
-       }
-
-}