Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8312491: Update Classfile API snippets and examples #14968

Closed
wants to merge 14 commits into from
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ public sealed interface BranchInstruction extends Instruction
*
* @param op the opcode for the specific type of branch instruction,
* which must be of kind {@link Opcode.Kind#BRANCH}
* @param target
* @param target the target of the branch
*/
static BranchInstruction of(Opcode op, Label target) {
Util.checkKind(op, Opcode.Kind.BRANCH);
Original file line number Diff line number Diff line change
@@ -41,8 +41,7 @@ public sealed interface LabelTarget extends PseudoInstruction
permits LabelImpl {

/**
*
* {@return label corresponding to this target}
* {@return the label corresponding to this target}
*/
Label label();
}