2012/6/27 <ma...@apache.org>: > Author: markt > Date: Tue Jun 26 20:06:21 2012 > New Revision: 1354200 > > URL: http://svn.apache.org/viewvc?rev=1354200&view=rev > Log: > Simplify. > > Modified: > tomcat/trunk/java/javax/servlet/jsp/PageContext.java
PageContext belongs to javax.servlet.jsp.*. I doubt that you can really change it this way, removing IOException from method signature. > tomcat/trunk/java/org/apache/jasper/runtime/JspContextWrapper.java > tomcat/trunk/java/org/apache/jasper/runtime/JspFactoryImpl.java > tomcat/trunk/java/org/apache/jasper/runtime/PageContextImpl.java > > Modified: tomcat/trunk/java/javax/servlet/jsp/PageContext.java > URL: > http://svn.apache.org/viewvc/tomcat/trunk/java/javax/servlet/jsp/PageContext.java?rev=1354200&r1=1354199&r2=1354200&view=diff > ============================================================================== > --- tomcat/trunk/java/javax/servlet/jsp/PageContext.java (original) > +++ tomcat/trunk/java/javax/servlet/jsp/PageContext.java Tue Jun 26 20:06:21 > 2012 > @@ -216,7 +216,6 @@ public abstract class PageContext > * @param autoFlush The value of the autoflush attribute from the page > * directive > * > - * @throws IOException during creation of JspWriter > * @throws IllegalStateException if out not correctly initialized > * @throws IllegalArgumentException If one of the given parameters > * is invalid > @@ -225,7 +224,7 @@ public abstract class PageContext > public abstract void initialize(Servlet servlet, ServletRequest request, > ServletResponse response, String errorPageURL, boolean needsSession, > int bufferSize, boolean autoFlush) > - throws IOException, IllegalStateException, IllegalArgumentException; > + throws IllegalStateException, IllegalArgumentException; > > /** > * <p> > Best regards, Konstantin Kolinko --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org