JAL-3407 JAL-3130 back out java 9+ syntax that breaks java 8 builds
authorJim Procter <jprocter@issues.jalview.org>
Mon, 30 Mar 2020 17:03:09 +0000 (18:03 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Mon, 30 Mar 2020 17:03:09 +0000 (18:03 +0100)
src/jalview/io/SequenceAnnotationReport.java

index 2cc0cd5..0125277 100644 (file)
@@ -66,7 +66,7 @@ public class SequenceAnnotationReport
    * Comparator to order DBRefEntry by Source + accession id (case-insensitive),
    * with 'Primary' sources placed before others, and 'chromosome' first of all
    */
-  private static Comparator<DBRefEntry> comparator = new Comparator<>()
+  private static Comparator<DBRefEntry> comparator = new Comparator<DBRefEntry>()
   {
 
     @Override