Polish "Fix Javadoc"

See gh-32403
This commit is contained in:
Stéphane Nicoll
2024-03-09 15:53:49 +01:00
parent abdccffa39
commit 4983a802a7
17 changed files with 38 additions and 92 deletions

View File

@@ -16,6 +16,7 @@
package org.springframework.web.bind;
import jakarta.servlet.ServletRequest;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Mode;
@@ -26,7 +27,8 @@ import org.springframework.web.testfixture.servlet.MockHttpServletRequest;
/**
* Benchmarks for extracting parameters from {@link jakarta.servlet.ServletRequest}.
* Benchmarks for extracting parameters from {@link ServletRequest}.
*
* @author Brian Clozel
*/
@BenchmarkMode(Mode.Throughput)

View File

@@ -69,8 +69,7 @@ public abstract class AbstractListenerWriteProcessor<T> implements Processor<T,
/**
* Indicates we're waiting for one last isReady-onWritePossible cycle
* after "onComplete" because some Servlet containers expect this to take
* place prior to calling AsyncContext.complete().
* @see <a href="https://github.com/eclipse-ee4j/servlet-api/issues/273">gh-273</a>
* place prior to calling AsyncContext.complete(). See also gh-273.
*/
private volatile boolean readyToCompleteAfterLastWrite;