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
commit 3af2ec4a85a4cc126a937ff240a7994b94571d5a Author: Mark Thomas <[email protected]> AuthorDate: Mon Sep 29 08:25:07 2025 +0100 Revert "Correct back-port" This reverts commit 50462fd6c0296f672a9e2aa843be66b24357f0de. --- java/org/apache/coyote/Request.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/java/org/apache/coyote/Request.java b/java/org/apache/coyote/Request.java index 2de1201b87..2f31210829 100644 --- a/java/org/apache/coyote/Request.java +++ b/java/org/apache/coyote/Request.java @@ -696,9 +696,11 @@ public final class Request { } /** - * @param startTime time + * Set the start time using the value provided by {@code System.currentTimeMillis()}. * - * @deprecated This setter will be removed in Tomcat 11. Use {@link #markStartTime()}. + * @param startTime The value returned from {@code System.currentTimeMillis()} at the point the requests started. + * + * @deprecated Unused. Will be removed in Tomcat 12 onwards. Use {@link #markStartTime()}. */ @Deprecated public void setStartTime(long startTime) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
