Skip to content

Commit

Permalink
Fixes #4971 - Simplify Connection.upgradeFrom()/upgradeTo().
Browse files Browse the repository at this point in the history
Fixed javadocs.

Signed-off-by: Simone Bordet <[email protected]>
  • Loading branch information
sbordet committed Jul 6, 2020
1 parent 75958cf commit 44fee6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jetty-io/src/main/java/org/eclipse/jetty/io/EndPoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
* {
* public void onSucceeded()
* {
* executor.execute(() ->
* executor.execute(() -&gt;
* {
* // Fill bytes in a different thread.
* int filled = endPoint.fill(byteBuffer);
Expand Down
2 changes: 2 additions & 0 deletions jetty-io/src/main/java/org/eclipse/jetty/io/FillInterest.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ public boolean tryRegister(Callback callback)

/**
* Call to signal that a read is now possible.
*
* @return whether the callback was notified that a read is now possible
*/
public boolean fillable()
{
Expand Down

0 comments on commit 44fee6c

Please sign in to comment.