Skip to content

Commit a93af32

Browse files
committed
Fix javadoc typos (from ASM master)
See gh-24872
1 parent 75f394c commit a93af32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-core/src/main/java/org/springframework/asm/ClassReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2965,7 +2965,7 @@ private int readElementValues(
29652965
// Parse the array_value array.
29662966
while (numElementValuePairs-- > 0) {
29672967
currentOffset =
2968-
readElementValue(annotationVisitor, currentOffset, /* named = */ null, charBuffer);
2968+
readElementValue(annotationVisitor, currentOffset, /* elementName = */ null, charBuffer);
29692969
}
29702970
}
29712971
if (annotationVisitor != null) {

spring-core/src/main/java/org/springframework/asm/ClassVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* A visitor to visit a Java class. The methods of this class must be called in the following order:
3232
* {@code visit} [ {@code visitSource} ] [ {@code visitModule} ][ {@code visitNestHost} ][ {@code
33-
* visitPermittedclass} ][ {@code visitOuterClass} ] ( {@code visitAnnotation} | {@code
33+
* visitPermittedSubclass} ][ {@code visitOuterClass} ] ( {@code visitAnnotation} | {@code
3434
* visitTypeAnnotation} | {@code visitAttribute} )* ( {@code visitNestMember} | {@code
3535
* visitInnerClass} | {@code visitRecordComponent} | {@code visitField} | {@code visitMethod} )*
3636
* {@code visitEnd}.

0 commit comments

Comments
 (0)