Skip to content

Commit

Permalink
JACOBIN-592 Minor update to link in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
platypusguy committed Nov 5, 2024
1 parent ed45662 commit 93ece23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/classloader/formatCheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

// Performs the format check on a fully parsed class. The requirements are listed
// here: https://docs.oracle.com/javase/specs/jvms/se11/html/jvms-4.html#jvms-4.8
// here: https://docs.oracle.com/javase/specs/jvms/se21/html/jvms-4.html#jvms-4.8
// They are:
// 1. must start with 0xCAFEBABE -- this is verified in the parsing, so not done here
// 2. most predefined attributes must be the right length -- verified during parsing
Expand Down Expand Up @@ -372,7 +372,7 @@ func formatCheckConstantPool(klass *ParsedClass) error {
}
}

//trace.Trace("formatCheckConstantPool: ClassName in MethodRef of MethodHandle at CP entry #"+strconv.Itoa(j)+
// trace.Trace("formatCheckConstantPool: ClassName in MethodRef of MethodHandle at CP entry #"+strconv.Itoa(j)+
// " is:"+methodName)

case MethodType:
Expand Down

0 comments on commit 93ece23

Please sign in to comment.