copyright notices/updates
[sbp.git] / src / edu / berkeley / sbp / chr / CharInput.java
index 530f25c..6dd9d7b 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright 2006 all rights reserved; see LICENSE file for BSD-style license
+
 package edu.berkeley.sbp.chr;
 import java.io.*;
 import java.util.*;
@@ -20,7 +22,7 @@ public class CharInput extends Cartesian.Input<Character> {
     boolean cr = false;
     private int count = 0;
     public boolean   isCR() { return cr; }
-    public Character next() throws IOException {
+    public Character _next() throws IOException {
         cr = false;
         int i = r.read();
         if (i==-1) { System.err.print("\r...done       \r"); return null; }