From 72f6c2bcc78443775f0006f0ce6f5e885b0e8329 Mon Sep 17 00:00:00 2001 From: Eirik Bjorsnos Date: Mon, 26 Jan 2026 14:39:22 +0100 Subject: [PATCH] Add periods to separate sentences in field comments --- .../share/classes/jdk/internal/loader/URLClassPath.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java.base/share/classes/jdk/internal/loader/URLClassPath.java b/src/java.base/share/classes/jdk/internal/loader/URLClassPath.java index dcd89129862..4e6c075bff0 100644 --- a/src/java.base/share/classes/jdk/internal/loader/URLClassPath.java +++ b/src/java.base/share/classes/jdk/internal/loader/URLClassPath.java @@ -97,17 +97,17 @@ public class URLClassPath { DEBUG_CP_URL_CHECK = p != null ? p.equals("true") || p.isEmpty() : false; } - /* Search path of URLs passed to the constructor or by calls to addURL + /* Search path of URLs passed to the constructor or by calls to addURL. * Access is guarded by a monitor on 'searchPath' itself */ private final ArrayList searchPath; - /* Index of the next URL in the search path to process + /* Index of the next URL in the search path to process. * Access is guarded by a monitor on 'searchPath' */ private int nextURL = 0; - /* List of URLs found during expansion of JAR 'Class-Path' attributes + /* List of URLs found during expansion of JAR 'Class-Path' attributes. * Access is guarded by a monitor on 'searchPath' */ private final ArrayList manifestClassPath = new ArrayList<>();