From bcfc7c04c50b67ff066a534ee0b8baa53af4cf79 Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Mon, 30 Mar 2020 18:03:09 +0100 Subject: [PATCH 1/1] JAL-3407 JAL-3130 back out java 9+ syntax that breaks java 8 builds --- src/jalview/io/SequenceAnnotationReport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jalview/io/SequenceAnnotationReport.java b/src/jalview/io/SequenceAnnotationReport.java index 2cc0cd5..0125277 100644 --- a/src/jalview/io/SequenceAnnotationReport.java +++ b/src/jalview/io/SequenceAnnotationReport.java @@ -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 comparator = new Comparator<>() + private static Comparator comparator = new Comparator() { @Override -- 1.7.10.2