cleanup
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / dto / TaxonRelationshipsDTO.java
index 5d40c96f9ea4e5f6e3822682345e573a71f92ec5..318901d8c299dbb1318279bf8fdf54f1ca98512d 100644 (file)
@@ -104,13 +104,6 @@ public class TaxonRelationshipsDTO {
             this.direction = direction;
         }
 
-
-
-        @Override
-        public String toString(){
-            return taxonUuid == null? super.toString() : taxonUuid.toString();
-        }
-
         public String getCache() {
             return cache;
         }
@@ -146,27 +139,21 @@ public class TaxonRelationshipsDTO {
             this.type = type;
         }
 
-
-        /**
-         * @return the typeUuid
-         */
         public UUID getTypeUuid() {
             return typeUuid;
         }
-
-
-        /**
-         * @param typeUuid the typeUuid to set
-         */
         public void setTypeUuid(UUID typeUuid) {
             this.typeUuid = typeUuid;
         }
 
-
         public Set<UUID> getClassificationsUUIDs() {
             return classificationsUUIDs;
         }
 
+        @Override
+        public String toString(){
+            return taxonUuid == null? super.toString() : taxonUuid.toString();
+        }
     }
 
     private List<TaxonRelationDTO> relations = new ArrayList<>();