jetty-9 syntax sugar

This commit is contained in:
Greg Wilkins 2012-10-18 08:18:52 +11:00
parent 62e0c49841
commit 9e2b75314e
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ public class HttpChannelState implements AsyncContext, Continuation
}
/* ------------------------------------------------------------ */
private final HttpChannel _channel;
private final HttpChannel<?> _channel;
private List<AsyncListener> _lastAsyncListeners;
private List<AsyncListener> _asyncListeners;
private List<ContinuationListener> _continuationListeners;
@ -99,7 +99,7 @@ public class HttpChannelState implements AsyncContext, Continuation
private volatile boolean _continuation;
/* ------------------------------------------------------------ */
protected HttpChannelState(HttpChannel channel)
protected HttpChannelState(HttpChannel<?> channel)
{
_channel=channel;
_state=State.IDLE;