This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new 7909473ef7 Fix indent
7909473ef7 is described below
commit 7909473ef7767614696959f98ceb8a20526e7641
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 ec4f93955b..59b7b406ee 100644
--- a/java/org/apache/tomcat/util/net/SocketWrapperBase.java
+++ b/java/org/apache/tomcat/util/net/SocketWrapperBase.java
@@ -1378,7 +1378,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]