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 0f609b18b0
commit 2baddb8b8d
1 changed files with 4 additions and 4 deletions

View File

@ -236,19 +236,19 @@ public final class POIDataSamples {
} }
@Override @Override
public int read() throws IOException { public int read() throws IOException {
return _is.read(); return _is.read();
} }
@Override @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); return _is.read(b, off, len);
} }
@Override @Override
public boolean markSupported() { public boolean markSupported() {
return false; return false;
} }
@Override @Override
public void close() throws IOException { public void close() throws IOException {
_is.close(); _is.close();
} }
} }