Skip to content

Commit

Permalink
remove two unused non-public exception classes (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo authored May 2, 2021
1 parent 1e6748c commit ff58583
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 241 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,9 @@ public XmlStreamReader( InputStream is )
* @param is {@link InputStream}
* @param lenient yes/no
* @throws IOException in case of an error
* @throws XmlStreamReaderException in case of an error
*/
public XmlStreamReader( InputStream is, boolean lenient )
throws IOException, XmlStreamReaderException
throws IOException
{
reader = new org.apache.commons.io.input.XmlStreamReader( is, lenient, staticDefaultEncoding );
}
Expand Down Expand Up @@ -124,10 +123,9 @@ public XmlStreamReader( InputStream is, String httpContentType )
* @param lenient yes/no
* @param defaultEncoding the default encoding
* @throws IOException in case of error
* @throws XmlStreamReaderException in case of error
*/
public XmlStreamReader( InputStream is, String httpContentType, boolean lenient, String defaultEncoding )
throws IOException, XmlStreamReaderException
throws IOException
{
reader = new org.apache.commons.io.input.XmlStreamReader( is, httpContentType, lenient,
( defaultEncoding == null )
Expand All @@ -140,10 +138,9 @@ public XmlStreamReader( InputStream is, String httpContentType, boolean lenient,
* @param httpContentType content type
* @param lenient yes/no
* @throws IOException in case of error
* @throws XmlStreamReaderException in case of error
*/
public XmlStreamReader( InputStream is, String httpContentType, boolean lenient )
throws IOException, XmlStreamReaderException
throws IOException
{
this( is, httpContentType, lenient, null );
}
Expand Down

This file was deleted.

0 comments on commit ff58583

Please sign in to comment.