You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by iv...@apache.org on 2010/08/27 01:55:07 UTC

svn commit: r989980 - /wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java

Author: ivaynberg
Date: Thu Aug 26 23:55:07 2010
New Revision: 989980

URL: http://svn.apache.org/viewvc?rev=989980&view=rev
Log:
bad idea

Modified:
    wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java

Modified: wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java
URL: http://svn.apache.org/viewvc/wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java?rev=989980&r1=989979&r2=989980&view=diff
==============================================================================
--- wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java (original)
+++ wicket/trunk/wicket/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java Thu Aug 26 23:55:07 2010
@@ -118,16 +118,6 @@ public class WicketFilter implements Fil
 			HttpServletRequest httpServletRequest = (HttpServletRequest)request;
 			HttpServletResponse httpServletResponse = (HttpServletResponse)response;
 
-			if (!Strings.isEmpty((String)request.getAttribute("javax.servlet.error.request_uri")))
-			{
-				/*
-				 * we are inside an error dispatch, because wicket assumes status is 200 and only
-				 * sets statuses to non-200 conditions we reset the current error status (404 or
-				 * other) back to 200
-				 */
-				httpServletResponse.setStatus(HttpServletResponse.SC_OK);
-			}
-
 			// Make sure getFilterPath() gets called before checkIfRedirectRequired()
 			String filterPath = getFilterPath(httpServletRequest);