comparison src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 1074:6b7ff30bb990

rename putQ() to put()
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 10 Nov 2016 02:37:15 -0700
parents a44fc6b53757
children ebb0f1343ef6
comparison
equal deleted inserted replaced
1073:6e511ea557b4 1074:6b7ff30bb990
737 { 737 {
738 if (_onebyte==null) 738 if (_onebyte==null)
739 _onebyte = BufferUtil.newBuffer(1); 739 _onebyte = BufferUtil.newBuffer(1);
740 else 740 else
741 _onebyte.clear(); 741 _onebyte.clear();
742 _onebyte.putQ((byte)b); 742 _onebyte.put((byte)b);
743 write(_onebyte); 743 write(_onebyte);
744 } 744 }
745 745
746 private void write(JBuffer buffer) throws IOException 746 private void write(JBuffer buffer) throws IOException
747 { 747 {