Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Auge2015-08-27 14:01:07 +0000
committerRaymond Auge2015-08-27 14:01:07 +0000
commit2500523b5932b3c037a3b649dd4baa7605c37d70 (patch)
treea4b3b06c4d3bcb7dc2b2c0e5ec3b2e468beccbc7 /bundles/org.eclipse.equinox.http.servlet
parent8efae44a5074cab7029670da996b14eeba6310b0 (diff)
downloadrt.equinox.bundles-2500523b5932b3c037a3b649dd4baa7605c37d70.tar.gz
rt.equinox.bundles-2500523b5932b3c037a3b649dd4baa7605c37d70.tar.xz
rt.equinox.bundles-2500523b5932b3c037a3b649dd4baa7605c37d70.zip
Bug 476046 - [http servlet] cleanup
Diffstat (limited to 'bundles/org.eclipse.equinox.http.servlet')
-rw-r--r--bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/RequestDispatcherAdaptor.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/RequestDispatcherAdaptor.java b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/RequestDispatcherAdaptor.java
index 8942d3e1a..b7122ef4e 100644
--- a/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/RequestDispatcherAdaptor.java
+++ b/bundles/org.eclipse.equinox.http.servlet/src/org/eclipse/equinox/http/servlet/internal/servlet/RequestDispatcherAdaptor.java
@@ -31,14 +31,12 @@ public class RequestDispatcherAdaptor implements RequestDispatcher {
this.dispatchTargets = dispatchTargets;
this.path = path;
- this.string = getClass().getSimpleName() + '[' + path + ", " + dispatchTargets + ']';
+ this.string = getClass().getSimpleName() + '[' + path + ", " + dispatchTargets + ']'; //$NON-NLS-1$
}
public void forward(ServletRequest request, ServletResponse response)
throws IOException, ServletException {
- response.resetBuffer();
-
dispatchTargets.doDispatch(
(HttpServletRequest)request, (HttpServletResponse)response,
path, DispatcherType.FORWARD);

Back to the top