This is an automated email from the ASF dual-hosted git repository. markt-asf pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 44af7007163e8de5ec6c40eea686b8b446e255e3 Author: Mark Thomas <[email protected]> AuthorDate: Wed Aug 12 20:55:59 2026 +0100 Fix Javadoc warnings --- .../org/apache/catalina/startup/TestWithoutClustering.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/org/apache/catalina/startup/TestWithoutClustering.java b/test/org/apache/catalina/startup/TestWithoutClustering.java index 9d09502030..b0dfc76491 100644 --- a/test/org/apache/catalina/startup/TestWithoutClustering.java +++ b/test/org/apache/catalina/startup/TestWithoutClustering.java @@ -54,7 +54,7 @@ public class TestWithoutClustering extends TomcatBaseTest { "org.apache.catalina.tribes.Channel")); } - /** + /* * Verify that Tomcat starts up and serves requests when clustering * classes are not available. */ @@ -105,7 +105,7 @@ public class TestWithoutClustering extends TomcatBaseTest { tomcat.getEngine().getCluster()); } - /** + /* * Verify that a servlet running inside a web application cannot load * clustering classes via the webapp classloader. */ @@ -159,7 +159,7 @@ public class TestWithoutClustering extends TomcatBaseTest { body.contains("RESULT: ALL_HIDDEN")); } - /** + /* * Verify that sessionsList.jsp compiles and renders when clustering * classes are not available. The JSP uses reflection to load DeltaSession * so it should gracefully fall back. @@ -253,7 +253,7 @@ public class TestWithoutClustering extends TomcatBaseTest { .contains("active Sessions")); } - /** + /* * Verify that StandardEngineSF loads without error when clustering * classes are not available. The clusterValveClass field should be null. */ @@ -274,7 +274,7 @@ public class TestWithoutClustering extends TomcatBaseTest { "clustering classes", f.get(null)); } - /** + /* * Verify that StandardHostSF loads without error when clustering * classes are not available. The clusterValveClass field should be null. */ @@ -295,7 +295,7 @@ public class TestWithoutClustering extends TomcatBaseTest { "clustering classes", f.get(null)); } - /** + /* * Verify that StoreRegistry.getInterfaces() returns only the 10 * core interfaces when clustering classes are not available. */ @@ -331,7 +331,7 @@ public class TestWithoutClustering extends TomcatBaseTest { } - /** + /* * Servlet that checks whether clustering classes are visible via the * webapp classloader (TCCL). Uses the TCCL rather than Class.forName() * because the servlet class itself is loaded by the system classloader --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
