fixed from sync with jetty-8
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@573 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
70c1eee2ce
commit
8169829ce2
|
@ -75,6 +75,7 @@ public class ContinuationFilter implements Filter
|
|||
{
|
||||
try
|
||||
{
|
||||
fc.setServletResponse(response);
|
||||
chain.doFilter(request,response);
|
||||
}
|
||||
catch (ContinuationThrowable e)
|
||||
|
|
|
@ -249,7 +249,15 @@ class FauxContinuation implements Continuation
|
|||
throw new IllegalStateException(this.getStatusString());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/**
|
||||
* @see org.eclipse.jetty.continuation.Continuation#getServletResponse()
|
||||
*/
|
||||
void setServletResponse(ServletResponse response)
|
||||
{
|
||||
_response=response;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
|
|
Loading…
Reference in New Issue