Skip to content
Snippets Groups Projects
Commit bd31dc16 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

remove declared Exception that isn't thrown

parent daa2d668
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,6 @@ import org.jdom2.output.Format;
import org.jdom2.output.XMLOutputter;
import javax.imageio.ImageIO;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
......@@ -98,7 +97,7 @@ public class CellHandler extends ContextHandler
}
@Override
public void doHandle( final String target, final Request baseRequest, final HttpServletRequest request, final HttpServletResponse response ) throws IOException, ServletException
public void doHandle( final String target, final Request baseRequest, final HttpServletRequest request, final HttpServletResponse response ) throws IOException
{
if ( target.equals( "/settings" ) )
{
......@@ -169,7 +168,7 @@ public class CellHandler extends ContextHandler
}
}
public void provideXML( final Request baseRequest, final HttpServletResponse response ) throws IOException, ServletException
public void provideXML( final Request baseRequest, final HttpServletResponse response ) throws IOException
{
response.setContentType( "application/xml" );
response.setCharacterEncoding( "UTF-8" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment