Merge branch 'jetty-9' of ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-9

This commit is contained in:
Joakim Erdfelt 2012-06-19 14:38:15 -07:00
commit 8065d04a0d
1 changed files with 2 additions and 0 deletions

View File

@ -72,6 +72,8 @@ public abstract class FrameGenerator<T extends BaseFrame>
ByteBuffer buffer = ByteBuffer.allocate(buflen);
// TODO: figure out how to get this from a bytebuffer pool
buffer.put(framing);
generatePayload(buffer, frame);
return buffer;
}