Merge pull request #627 from veebs/3spdy

Corrected typo for #626
This commit is contained in:
Norman Maurer 2012-09-24 05:29:29 -07:00
commit 66af2de8c1

View File

@ -25,10 +25,8 @@ import org.jboss.netty.handler.codec.http.HttpMessage;
import org.jboss.netty.handler.codec.http.HttpResponse;
/**
* {@link SimpleChannelHandler} which will take care of add the right {@link SpdyHttpHeaders#Names#STREAM_ID} to the
* {@link HttpResponse} if non is in there. This makes it possible to just re-use plan handlers that was used with HTTP
* only before.
*
* {@link SimpleChannelHandler} that takes care of adding the right {@link SpdyHttpHeaders#Names#STREAM_ID} to the
* {@link HttpResponse} if one is not present. This makes it possible to just re-use plan handlers current used for HTTP.
*/
public class SpdyHttpResponseStreamIdHandler extends SimpleChannelHandler {
private static final Integer NO_ID = -1;