cleanup
authorAndreas Müller <a.mueller@bgbm.org>
Wed, 12 May 2021 17:22:20 +0000 (19:22 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Wed, 12 May 2021 17:22:20 +0000 (19:22 +0200)
cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/description/DescriptionType.java
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/TaxonServiceImpl.java

index 20a58c28c861d3572fffac6fb6f47d89a3d4bd15..33abc0b085f334c2c2ce7a4acbefa5f926c2d3b8 100644 (file)
@@ -70,7 +70,7 @@ public enum DescriptionType implements IEnumTerm<DescriptionType>{
      * Kind of a marker to define that data comes from a secondary source. E.g. if
      * taxon descriptions are computed mostly on primary data (e.g. specimen descriptions)
      * some data might come from literature though to complete the description.
-     * This literature data then should be marked as "Secondary data"
+     * This literature data then should be marked as "secondary data"
      */
     @XmlEnumValue("SEC")
     SECONDARY_DATA(UUID.fromString("382e6b00-9725-4877-bd50-18ee263fe90e"), "Secondary Data", "SEC", null),
index 4849f71390e957d3232f1736c47f5f1ec249b859..51743914f764cbd9648cd4c5d786ce25f542893c 100644 (file)
@@ -1470,7 +1470,7 @@ public class TaxonServiceImpl
             SynonymType newSynonymType) throws HomotypicalGroupChangeException {
         return moveSynonymToAnotherTaxon(oldSynonym, newTaxon, moveHomotypicGroup,
                 newSynonymType,
-                oldSynonym.getSec()!= null?oldSynonym.getSec().getUuid():null,
+                oldSynonym.getSec()!= null? oldSynonym.getSec().getUuid(): null,
                 oldSynonym.getSecMicroReference(),
                 true);
     }