cleanup
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / descriptiveDataSet / matrix / CategoricalDataHistogram.java
index d84cc8ae208a206384c2a6e885b7e5d41c7c2c14..d2da9b755fa0dcd8c8e2ed33889670a4ce15369e 100644 (file)
@@ -19,7 +19,6 @@ import eu.etaxonomy.cdm.model.description.State;
 /**
  * @author pplitzner
  * @since Jul 12, 2018
- *
  */
 public class CategoricalDataHistogram {
 
@@ -32,7 +31,7 @@ public class CategoricalDataHistogram {
         this.states = new ArrayList<>();
         this.frequency = new Frequency();
         feature.getSupportedCategoricalEnumerations()
-        .forEach(voc->voc.getTerms()
+            .forEach(voc->voc.getTerms()
                 .forEach(state->states.add(state)));
     }