Added missing StringReader.close() method.

This commit is contained in:
Michael Bayne
2015-09-21 16:13:27 -07:00
parent ec7ea6a660
commit f121c11e6f
@@ -16,6 +16,8 @@ public class StringReader extends Reader
return (_pos >= _data.length()) ? -1 : _data.charAt(_pos++);
}
public void close () throws IOException {}
protected final String _data;
protected int _pos;
}