X-Git-Url: https://dev.e-taxonomy.eu/gitweb/taxeditor.git/blobdiff_plain/a3a12095b7d9bec94f1e1d924eb007308a78e059..b869700fa13ba85f0914e0b012a354aa9898220e:/eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/matrix/CategoricalDataHistogram.java diff --git a/eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/matrix/CategoricalDataHistogram.java b/eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/matrix/CategoricalDataHistogram.java index d84cc8ae2..d2da9b755 100644 --- a/eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/matrix/CategoricalDataHistogram.java +++ b/eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/descriptiveDataSet/matrix/CategoricalDataHistogram.java @@ -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))); }