Skip to content

Commit 0e81361

Browse files
committed
8336695: Update Commons BCEL to Version 6.10.0
1 parent f1ee1b4 commit 0e81361

File tree

122 files changed

+2461
-1128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+2461
-1128
lines changed

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/Const.java

Lines changed: 463 additions & 365 deletions
Large diffs are not rendered by default.

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/ExceptionConst.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved.
33
*/
44
/*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -26,7 +26,7 @@
2626
* Exception constants.
2727
*
2828
* @since 6.0 (intended to replace the InstructionConstant interface)
29-
* @LastModified: Feb 2023
29+
* @LastModified: Sept 2025
3030
*/
3131
public final class ExceptionConst {
3232

@@ -52,7 +52,6 @@ public enum EXCS {
5252
* Super class of any linking exception (aka Linkage Error)
5353
*/
5454
public static final Class<LinkageError> LINKING_EXCEPTION = LinkageError.class;
55-
5655
/**
5756
* Linking Exceptions
5857
*/
@@ -67,10 +66,10 @@ public enum EXCS {
6766
public static final Class<NoSuchMethodError> NO_SUCH_METHOD_ERROR = NoSuchMethodError.class;
6867
public static final Class<NoClassDefFoundError> NO_CLASS_DEF_FOUND_ERROR = NoClassDefFoundError.class;
6968
public static final Class<UnsatisfiedLinkError> UNSATISFIED_LINK_ERROR = UnsatisfiedLinkError.class;
69+
7070
public static final Class<VerifyError> VERIFY_ERROR = VerifyError.class;
7171
/* UnsupportedClassVersionError is new in JDK 1.2 */
7272
// public static final Class UnsupportedClassVersionError = UnsupportedClassVersionError.class;
73-
7473
/**
7574
* Run-Time Exceptions
7675
*/

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/Repository.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved.
33
*/
44
/*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -30,7 +30,7 @@
3030
* @see com.sun.org.apache.bcel.internal.util.Repository
3131
* @see SyntheticRepository
3232
*
33-
* @LastModified: Feb 2023
33+
* @LastModified: Sept 2025
3434
*/
3535
public abstract class Repository {
3636

@@ -174,7 +174,7 @@ public static JavaClass lookupClass(final Class<?> clazz) throws ClassNotFoundEx
174174
}
175175

176176
/**
177-
* Lookups class somewhere found on your CLASSPATH, or wherever the repository instance looks for it.
177+
* Lookups class somewhere found on your CLASSPATH, or whereever the repository instance looks for it.
178178
*
179179
* @return class object for given fully qualified class name
180180
* @throws ClassNotFoundException if the class could not be found or parsed correctly

0 commit comments

Comments
 (0)