spdy: StandardSession format toString method

This commit is contained in:
Thomas Becker 2012-07-26 13:10:08 +02:00
parent 688eec732f
commit 37e0b8ffe4
1 changed files with 1 additions and 1 deletions

View File

@ -1295,7 +1295,7 @@ public class StandardSession implements ISession, Parser.Listener, Handler<Stand
@Override
public String toString()
{
return String.format("DATA bytes @%x available=%d consumed=%d on %s",dataInfo.hashCode(),dataInfo.available(),dataInfo.consumed(),getStream());
return String.format("DATA bytes @%x available=%d consumed=%d on %s", dataInfo.hashCode(), dataInfo.available(), dataInfo.consumed(), getStream());
}
}
}