From 57b0dee0192a285d36bd698655e639978487a30a Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Tue, 13 Aug 2019 16:50:58 +0100 Subject: [PATCH] JAL-3362 keep Java 1.8 build happy by specifying generic type arguments --- 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 61b7491..66db038 100644 --- a/src/jalview/io/SequenceAnnotationReport.java +++ b/src/jalview/io/SequenceAnnotationReport.java @@ -65,7 +65,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