Merge branch 'release/5.32.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / util / OperationsUtil.java
index 5b4508dfca3d560c1dde562f86c2090ee8f6c44a..dfb59a48fca2d481ee13f0c036b849d1eb3ccda5 100644 (file)
@@ -17,12 +17,11 @@ import eu.etaxonomy.cdm.model.common.CdmBase;
 /**
  * @author cmathew
  * @date 29 Jun 2015
- *
  */
 public class OperationsUtil {
 
     public static List<UUID> convertToUuidList(List<CdmBase> cdmBaseList) {
-        List<UUID> uuids = new ArrayList<UUID>();
+        List<UUID> uuids = new ArrayList<>();
         for(CdmBase cdmBase : cdmBaseList) {
             if(cdmBase == null) {
                 uuids.add(null);