Remove old license headers
[gpl/argeo-slc.git] / org.argeo.slc.support / src / org / argeo / slc / diff / DiffIssue.java
index eda08e5e9d80ae6486c1d71625b53cecd9706a0d..b390d68c936d84616c63c533fe40aa1b879db5b5 100644 (file)
@@ -1,58 +1,43 @@
-/*\r
- * Copyright (C) 2007-2012 Argeo GmbH\r
- *\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *         http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-package org.argeo.slc.diff;\r
-\r
-/** The root class for issues which happened during a diff. */\r
-public abstract class DiffIssue implements Comparable<DiffIssue> {\r
-       /** The position of this issue. */\r
-       // Was final and is not anymore in order to persist in hibernate\r
-       protected DiffPosition position;\r
-\r
-       // hibernate\r
-       private long id;\r
-\r
-       /** Constructor */\r
-       public DiffIssue(DiffPosition position) {\r
-               super();\r
-               this.position = position;\r
-       }\r
-\r
-       public int compareTo(DiffIssue o) {\r
-               return position.compareTo(o.position);\r
-       }\r
-\r
-       /** The position of this issue within the test file */\r
-       public DiffPosition getPosition() {\r
-               return position;\r
-       }\r
-\r
-       // Hibernate\r
-       @SuppressWarnings("unused")\r
-       private void setId(long id) {\r
-               this.id = id;\r
-       }\r
-\r
-       @SuppressWarnings("unused")\r
-       private long getId() {\r
-               return id;\r
-       }\r
-\r
-       @SuppressWarnings("unused")\r
-       private void setPosition(DiffPosition position) {\r
-               this.position = position;\r
-       }\r
-\r
-}\r
+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;
+       }
+
+}