From: Jim Procter Date: Tue, 13 Aug 2019 15:50:58 +0000 (+0100) Subject: JAL-3362 keep Java 1.8 build happy by specifying generic type arguments X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=57b0dee0192a285d36bd698655e639978487a30a JAL-3362 keep Java 1.8 build happy by specifying generic type arguments --- 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