This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-bcel.git
commit 47729795199987cc3dc1b76fdf637a1b4400295e Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:46:29 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/util/ClassPathRepository.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/bcel/util/ClassPathRepository.java b/src/main/java/org/apache/bcel/util/ClassPathRepository.java index d07f7035..19d386f0 100644 --- a/src/main/java/org/apache/bcel/util/ClassPathRepository.java +++ b/src/main/java/org/apache/bcel/util/ClassPathRepository.java @@ -34,6 +34,11 @@ public class ClassPathRepository extends AbstractClassPathRepository { private final Map<String, JavaClass> loadedClasses = new HashMap<>(); // CLASSNAME X JAVACLASS + /** + * Constructs a ClassPathRepository. + * + * @param classPath the class path. + */ public ClassPathRepository(final ClassPath classPath) { super(classPath); }
