comparison src/org/eclipse/jetty/io/Buffers.java @ 1048:2b769da7f67d

remove Buffer
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 07 Nov 2016 23:15:42 -0700
parents 8c13b9224cff
children ebb0f1343ef6
comparison
equal deleted inserted replaced
1047:1accf965d51a 1048:2b769da7f67d
26 * is supported, but these terms have no absolute meaning and must be determined by context. 26 * is supported, but these terms have no absolute meaning and must be determined by context.
27 * 27 *
28 */ 28 */
29 public interface Buffers 29 public interface Buffers
30 { 30 {
31 Buffer getHeader(); 31 JBuffer getHeader();
32 Buffer getBuffer(); 32 JBuffer getBuffer();
33 Buffer getBuffer(int size); 33 JBuffer getBuffer(int size);
34 } 34 }