Remove throws IOException declaration on filterClean

This method only creates an EolCanonicalizingInputStream
which does not throw an IOException and so the throws
declaration on the method is unneeded.

Change-Id: Icae8b80006c5e3ffcf3b69790a1a45c505be0f05
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Kevin Sawicki 2012-05-09 11:18:02 -07:00 committed by Matthias Sohn
parent a9133e55a4
commit d72a459f93
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ private ByteBuffer filterClean(byte[] src, int n)
}
}
private InputStream filterClean(InputStream in) throws IOException {
private InputStream filterClean(InputStream in) {
return new EolCanonicalizingInputStream(in, true);
}