whitespace
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722696 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
87ec46ff34
commit
2cf06902d5
@ -236,19 +236,19 @@ public final class POIDataSamples {
|
||||
}
|
||||
|
||||
@Override
|
||||
public int read() throws IOException {
|
||||
public int read() throws IOException {
|
||||
return _is.read();
|
||||
}
|
||||
@Override
|
||||
public int read(byte[] b, int off, int len) throws IOException {
|
||||
public int read(byte[] b, int off, int len) throws IOException {
|
||||
return _is.read(b, off, len);
|
||||
}
|
||||
@Override
|
||||
public boolean markSupported() {
|
||||
public boolean markSupported() {
|
||||
return false;
|
||||
}
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
public void close() throws IOException {
|
||||
_is.close();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user