add maxLength argument to Input.showRegion()
[sbp.git] / src / edu / berkeley / sbp / tib / Tib.java
index 387f5ed..a86b3ab 100644 (file)
@@ -20,7 +20,7 @@ import java.io.*;
  */
 public class Tib implements Input<Character> {
 
-    public String showRegion(Region<Character> r) { return ""; }
+    public String showRegion(Region<Character> r, int max) { return ""; }
 
     public Tib(String s) throws IOException { this(new StringReader(s)); }
     public Tib(Reader r) throws IOException { this(new BufferedReader(r)); }