Added missing StringReader.close() method.
This commit is contained in:
@@ -16,6 +16,8 @@ public class StringReader extends Reader
|
|||||||
return (_pos >= _data.length()) ? -1 : _data.charAt(_pos++);
|
return (_pos >= _data.length()) ? -1 : _data.charAt(_pos++);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void close () throws IOException {}
|
||||||
|
|
||||||
protected final String _data;
|
protected final String _data;
|
||||||
protected int _pos;
|
protected int _pos;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user