Merge develop to Release_2_8_3_Branch
[jalview.git] / src / jalview / util / ParseHtmlBodyAndLinks.java
index 2330cca..7aec22d 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -32,6 +32,8 @@ import java.util.regex.Pattern;
  */
 public class ParseHtmlBodyAndLinks
 {
+  private static final Pattern LEFT_ANGLE_BRACKET_PATTERN = Pattern.compile("<");
+
   String orig = null;
 
   public String getOrig()
@@ -153,7 +155,7 @@ public class ParseHtmlBodyAndLinks
     {
       // instead of parsing the html into plaintext
       // clean the description ready for embedding in html
-      sb = new StringBuffer(Pattern.compile("<").matcher(description)
+      sb = new StringBuffer(LEFT_ANGLE_BRACKET_PATTERN.matcher(description)
               .replaceAll("&lt;"));
 
     }