This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 5ef11e6fe5 Fix indent
5ef11e6fe5 is described below
commit 5ef11e6fe56f545f4308f078e2fe7a4f4ede493d
Author: remm <[email protected]>
AuthorDate: Mon Oct 7 15:01:46 2024 +0200
Fix indent
---
java/org/apache/tomcat/util/net/SocketWrapperBase.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
index 0f77c0f000..9728aeac8c 100644
--- a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
+++ b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
@@ -1447,7 +1447,7 @@ public abstract class SocketWrapperBase<E> {
try {
long timeoutExpiry = System.nanoTime() +
unit.toNanos(timeout);
long timeoutMillis = unit.toMillis(timeout);
- // Spurious wake-ups are possible. Keep waiting until
state changes or timeout expires.
+ // Spurious wake-ups are possible. Keep waiting until
state changes or timeout expires.
while (state.state == CompletionState.PENDING &&
timeoutMillis > 0) {
state.wait(unit.toMillis(timeout));
timeoutMillis = (timeoutExpiry -
System.nanoTime()) / 1_000_000;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]