whitespace

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1722696 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-01-03 01:34:33 +00:00
parent 87ec46ff34
commit 2cf06902d5

View File

@ -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();
}
}