View difference between Paste ID: qdR072Df and 0atubAuZ
SHOW: | | - or go back to the newest paste.
1
package io.liveboard.http
2
3
import io.netty.channel.ChannelHandlerContext
4
import io.netty.handler.codec.http.HttpRequest
5
6-
class HttpContextImpl(
6+
class HttpContextImpl(m_channelHandlerContext: ChannelHandlerContext, m_request: HttpRequest, m_identity: AnyRef) extends HttpContext{
7-
    m_channelHandlerContext: ChannelHandlerContext,
7+
8-
    m_request: HttpRequest,
8+
9-
    m_identity: AnyRef
9+
10-
  ) extends HttpContext{
10+
11
}