From: Jim Procter Date: Mon, 30 Mar 2020 17:03:09 +0000 (+0100) Subject: JAL-3407 JAL-3130 back out java 9+ syntax that breaks java 8 builds X-Git-Tag: Release_2_11_1_0~15^2~2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=bcfc7c04c50b67ff066a534ee0b8baa53af4cf79;hp=8ff7bd2e061eec7013fcf2b34dd0d3376de42acb;p=jalview.git JAL-3407 JAL-3130 back out java 9+ syntax that breaks java 8 builds --- 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