JAL-3210 Barebones gradle/buildship/eclipse. See README
[jalview.git] / src / com / stevesoft / pat / RegexReader.java
index 2e10f16..a0b42ce 100755 (executable)
@@ -7,9 +7,10 @@
 //
 package com.stevesoft.pat;
 
-import java.io.*;
+import java.io.IOException;
+import java.io.Reader;
 
-import com.stevesoft.pat.wrap.*;
+import com.stevesoft.pat.wrap.StringBufferWrap;
 
 /**
  * This class allows you to replace the text in strings as you read them in. Be
@@ -232,6 +233,7 @@ public class RegexReader extends Reader
    * 
    * @deprecated
    */
+  @Deprecated
   public int getMaxLines()
   {
     return max_lines;
@@ -242,6 +244,7 @@ public class RegexReader extends Reader
    * 
    * @deprecated
    */
+  @Deprecated
   public void setMaxLines(int ml)
   {
     max_lines = ml;
@@ -254,6 +257,7 @@ public class RegexReader extends Reader
    * 
    * @deprecated
    */
+  @Deprecated
   public char getEOLchar()
   {
     return EOLchar;
@@ -264,6 +268,7 @@ public class RegexReader extends Reader
    * 
    * @deprecated
    */
+  @Deprecated
   public void setEOLchar(char c)
   {
     EOLchar = c;