Mercurial Hosting > luan
diff src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 1036:b87f97f6418a
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 03 Nov 2016 21:42:41 -0600 |
parents | 898774c2cd87 |
children | b71ad168fe34 |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/server/AbstractHttpConnection.java Thu Nov 03 21:09:57 2016 -0600 +++ b/src/org/eclipse/jetty/server/AbstractHttpConnection.java Thu Nov 03 21:42:41 2016 -0600 @@ -637,7 +637,7 @@ _delayedHandling = true; } - private void content(Buffer buffer) throws IOException + private void content() throws IOException { if (_delayedHandling) { @@ -682,9 +682,9 @@ } @Override - public void content(Buffer ref) throws IOException + public void content() throws IOException { - AbstractHttpConnection.this.content(ref); + AbstractHttpConnection.this.content(); } @Override