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
The following commit(s) were added to refs/heads/master by this push: new f16e45b9 Format tweak f16e45b9 is described below commit f16e45b90adf12531817015a0b2d51aa4f63a11d Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Thu Nov 17 10:16:35 2022 -0500 Format tweak --- src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java b/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java index 3c8bd94f..2d8db459 100644 --- a/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java +++ b/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java @@ -747,12 +747,12 @@ public final class Pass3aVerifier extends PassVerifier { @Override public void visitLoadClass(final LoadClass loadClass) { final ObjectType t = loadClass.getLoadClassType(constantPoolGen); - if (t != null) {// null means "no class is loaded" + if (t != null) { // null means "no class is loaded" final Verifier v = VerifierFactory.getVerifier(t.getClassName()); final VerificationResult vr = v.doPass1(); if (vr.getStatus() != VerificationResult.VERIFIED_OK) { constraintViolated((Instruction) loadClass, - "Class '" + loadClass.getLoadClassType(constantPoolGen).getClassName() + "' is referenced, but cannot be loaded: '" + vr + "'."); + "Class '" + loadClass.getLoadClassType(constantPoolGen).getClassName() + "' is referenced, but cannot be loaded: '" + vr + "'."); } } }