JETTY-1101 Updated servlet3 continuation constructor

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@826 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2009-09-08 04:56:51 +00:00
parent 6b6d7e77c3
commit f47ddbee95
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ jetty-7.0.0.RC6-SNAPSHOT
+ JETTY-1092 MultiPartFilter can be pushed into infinite loop
+ JETTY-1093 Request.toString throws exception when size exceeds 4k
+ JETTY-1098 Default form encoding is UTF8
+ JETTY-1101 Updated servlet3 continuation constructor
+ 288514 AbstractConnector does not handle InterruptedExceptions on shutdown
+ 288466 LocalConnector is not thread safe
+ 288772 Failure to connect does not set status to EXCEPTED

View File

@ -45,7 +45,7 @@ public class ContinuationSupport
if (servlet3)
{
Class<? extends Continuation> s3c = ContinuationSupport.class.getClassLoader().loadClass("org.eclipse.jetty.continuation.Servlet3Continuation").asSubclass(Continuation.class);
s3cc=s3c.getConstructor(ServletRequest.class, ServletResponse.class);
s3cc=s3c.getConstructor(ServletRequest.class);
servlet3Support=true;
}
}