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 076ee915 Javadoc: Use a sentence
076ee915 is described below
commit 076ee915ffa0d0c5041ec34ed298be00e866567f
Author: Gary David Gregory (Code signing key) <[email protected]>
AuthorDate: Fri Oct 18 18:11:17 2024 -0400
Javadoc: Use a sentence
---
src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
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 b9a67e5c..f131c0b0 100644
--- a/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java
+++ b/src/main/java/org/apache/bcel/verifier/statics/Pass3aVerifier.java
@@ -118,7 +118,9 @@ public final class Pass3aVerifier extends PassVerifier {
/** The ConstantPoolGen instance this Visitor operates on. */
private final ConstantPoolGen constantPoolGen;
- /** The only Constructor. */
+ /**
+ * Constructs a new instance.
+ */
InstOperandConstraintVisitor(final ConstantPoolGen constantPoolGen) {
this.constantPoolGen = constantPoolGen;
}