JAL-3577 Moved application Categories for freedesktop menus into correct place in...
[jalview.git] / src / jalview / io / SequenceAnnotationReport.java
index 3624cd9..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
@@ -240,11 +240,11 @@ public class SequenceAnnotationReport
 
         /*
          * truncate overlong descriptions unless they contain an href
-         * (as truncation could leave corrupted html)
+         * before the truncation point (as truncation could leave corrupted html)
          */
         int linkindex = description.toLowerCase().indexOf("<a ");
         boolean hasLink = linkindex > -1
-                && linkindex < (MAX_DESCRIPTION_LENGTH);
+                && linkindex < MAX_DESCRIPTION_LENGTH;
         if (description.length() > MAX_DESCRIPTION_LENGTH && !hasLink)
         {
           description = description.substring(0, MAX_DESCRIPTION_LENGTH)