- fix for java 1.6 compatibility
authorPatric Plitzner <p.plitzner@bgbm.org>
Tue, 24 Feb 2015 10:22:38 +0000 (10:22 +0000)
committerPatric Plitzner <p.plitzner@bgbm.org>
Tue, 24 Feb 2015 10:22:38 +0000 (10:22 +0000)
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/view/descriptive/DescriptiveViewPart.java

index bbed057f0af288a436d0d4828c85dd759e2da1ac..eafaa0b0812d5b0cae958e4c9c7b92f00dc2c172 100644 (file)
@@ -135,7 +135,7 @@ public class DescriptiveViewPart extends AbstractCdmEditorViewPart implements IP
                 //Open derivate editor when specimen description element is double clicked
                 TreeSelection selection = (TreeSelection) viewer.getSelection();
                 Iterator iterator = selection.iterator();
-                Set<UUID> specimenUuids = new HashSet<>();
+                Set<UUID> specimenUuids = new HashSet<UUID>();
                 while(iterator.hasNext()){
                     Object next = iterator.next();
                     if(next instanceof IndividualsAssociation){