From 3867c9bb53b7d1a78edc1f12371f9faa68dc33fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20M=C3=BCller?= Date: Mon, 12 Feb 2018 16:56:03 +0100 Subject: [PATCH] cleanup --- .../eu/etaxonomy/taxeditor/parser/ParseHandler.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/parser/ParseHandler.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/parser/ParseHandler.java index ddafe5434..ece1e56aa 100644 --- a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/parser/ParseHandler.java +++ b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/parser/ParseHandler.java @@ -33,13 +33,13 @@ public class ParseHandler{ private class MatchMatrix { List duplicateNames = new ArrayList<>(); - List duplicateReferences = new ArrayList(); - List duplicateInReferences = new ArrayList(); + List duplicateReferences = new ArrayList<>(); + List duplicateInReferences = new ArrayList<>(); - List duplicateCombinationAuthorships = new ArrayList(); - List duplicateExCombinationAuthorships = new ArrayList(); - List duplicateBasionymAuthorships = new ArrayList(); - List duplicateExBasionymAuthorships = new ArrayList(); + List duplicateCombinationAuthorships = new ArrayList<>(); + List duplicateExCombinationAuthorships = new ArrayList<>(); + List duplicateBasionymAuthorships = new ArrayList<>(); + List duplicateExBasionymAuthorships = new ArrayList<>(); } private static NonViralNameParserImpl nonViralNameParser = NonViralNameParserImpl.NewInstance(); -- 2.34.1