cleanup
authorAndreas Müller <a.mueller@bgbm.org>
Thu, 28 Sep 2023 10:46:49 +0000 (12:46 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Thu, 28 Sep 2023 10:46:49 +0000 (12:46 +0200)
cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/cdmLight/CdmLightClassificationExport.java
cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/common/ExportDataWrapper.java
cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/common/ExportResult.java

index b44477d3d7994c509555646b7483402afdf661c4..c5fa4fc09ecba73492d94fa97cccf7b726a86264 100755 (executable)
@@ -1384,7 +1384,6 @@ public class CdmLightClassificationExport
                 typifiedNames.addAll(group.getTypifiedNames());
             }
 
-
             Integer seqNumber = typifiedNames.indexOf(name);
             csvLine[table.getIndex(CdmLightExportTable.HOMOTYPIC_GROUP_SEQ)] = String.valueOf(seqNumber);
             state.getProcessor().put(table, name, csvLine);
index 45086f6918636bde63404f80c62e611c79a8b8e9..0a53a107e67c93d7fc6b560fcb9c1fe316a3b971 100755 (executable)
@@ -26,24 +26,17 @@ public class ExportDataWrapper<T> implements Serializable{
     private T exportData;
     private ExportResultType type;
 
-    /**
-     * @return the type
-     */
+    private ExportDataWrapper(){
+    }
+
     public ExportResultType getType() {
         return type;
     }
 
-    /**
-     * @param type the type to set
-     */
     public void setType(ExportResultType type) {
         this.type = type;
     }
 
-    private ExportDataWrapper(){
-
-    }
-
     public static final ExportDataWrapper<List<byte[]>> NewListByteArrayInstance(){
         ExportDataWrapper<List<byte[]>> result = new ExportDataWrapper<>();
         result.type = ExportResultType.LIST_BYTE_ARRAY;
index bd31a336fb9430d284a933fe76fb43d273315e6f..84f6dd161c3cd5743cec12bf914f0100f180afff 100644 (file)
@@ -77,8 +77,7 @@ public class ExportResult extends IoResultBase implements Serializable {
 
     public ExportResultState getState() {return state;}
     public void setState(ExportResultState state) {this.state = state;}
-
-
+    
 
     public ExportDataWrapper<?> getExportData() {return data;}
     public void setExportData(ExportDataWrapper<?> data) {this.data = data;}