JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / com / stevesoft / pat / RegexWriter.java
index a8c3e50..a6fec74 100755 (executable)
@@ -7,9 +7,11 @@
 //
 package com.stevesoft.pat;
 
-import java.io.*;
+import java.io.IOException;
+import java.io.StringWriter;
+import java.io.Writer;
 
-import com.stevesoft.pat.wrap.*;
+import com.stevesoft.pat.wrap.WriterWrap;
 
 /**
  * A basic extension of FilterWriter that uses Transformer to make replacements
@@ -31,8 +33,8 @@ import com.stevesoft.pat.wrap.*;
  * an ending (the whole pattern is a String formed by adding the beginning and
  * ending), and a ReplaceRule.
  * <p>
- * An illustration of this is given in the this <a
- * href="../test/trans.java">example.</a>
+ * An illustration of this is given in the this
+ * <a href="../test/trans.java">example.</a>
  */
 public class RegexWriter extends Writer
 {
@@ -77,6 +79,7 @@ public class RegexWriter extends Writer
    * 
    * @deprecated
    */
+  @Deprecated
   public char getEOLchar()
   {
     return EOLchar;
@@ -87,6 +90,7 @@ public class RegexWriter extends Writer
    * 
    * @deprecated
    */
+  @Deprecated
   public void setEOLchar(char c)
   {
     EOLchar = c;
@@ -99,6 +103,7 @@ public class RegexWriter extends Writer
    * 
    * @deprecated
    */
+  @Deprecated
   public int getMaxLines()
   {
     return max_lines;
@@ -109,6 +114,7 @@ public class RegexWriter extends Writer
    * 
    * @deprecated
    */
+  @Deprecated
   public void setMaxLines(int ml)
   {
     max_lines = ml;