Mercurial Hosting > luan
diff src/org/eclipse/jetty/io/BufferUtil.java @ 1019:f126d30e04a4
start replacing BufferCache with StringCache
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 31 Oct 2016 03:33:42 -0600 |
parents | 4dc1e1a18661 |
children | 6be43ef1eb96 |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/io/BufferUtil.java Mon Oct 24 05:37:24 2016 -0600 +++ b/src/org/eclipse/jetty/io/BufferUtil.java Mon Oct 31 03:33:42 2016 -0600 @@ -237,7 +237,7 @@ public static Buffer toBuffer(long value) { - ByteArrayBuffer buf=new ByteArrayBuffer(32); + ByteArrayBuffer buf = new ByteArrayBuffer(32); putDecLong(buf, value); return buf; }