From 95265bfaa5a9869003fe802ba780e91e0741d141 Mon Sep 17 00:00:00 2001 From: Simone Bordet Date: Fri, 20 Aug 2021 10:32:30 +0200 Subject: [PATCH] Issue #6603 - HTTP/2 max local stream count exceeded Fixed javadocs. Signed-off-by: Simone Bordet --- jetty-util/src/main/java/org/eclipse/jetty/util/Pool.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/Pool.java b/jetty-util/src/main/java/org/eclipse/jetty/util/Pool.java index 907ed44bdca3..660108129a3d 100644 --- a/jetty-util/src/main/java/org/eclipse/jetty/util/Pool.java +++ b/jetty-util/src/main/java/org/eclipse/jetty/util/Pool.java @@ -627,7 +627,7 @@ public T getPooled() /** *

Releases this Entry.

- *

This is equivalent to calling {@link Pool#release(Entry)} passing this entry.

+ *

This is equivalent to calling {@link Pool#release(Pool.Entry)} passing this entry.

* * @return whether the entry was released */ @@ -638,7 +638,7 @@ public boolean release() /** *

Removes the entry.

- *

This is equivalent to calling {@link Pool#remove(Entry)} passing this entry.

+ *

This is equivalent to calling {@link Pool#remove(Pool.Entry)} passing this entry.

* * @return whether the entry was removed */