You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2020/09/16 18:51:36 UTC

[commons-bcel] branch master updated (2ab41d6 -> fead9f0)

This is an automated email from the ASF dual-hosted git repository.

markt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git.


    from 2ab41d6  Trigger a GitHub build on pull requests.
     new 8b3085f  Fix typo
     new fead9f0  Fix typo

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/main/java/org/apache/bcel/classfile/ConstantPool.java | 2 +-
 src/main/java/org/apache/bcel/classfile/JavaClass.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[commons-bcel] 01/02: Fix typo

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit 8b3085f6241cbc05dbcc0bd3f2080d3fdc8cee36
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Sep 16 17:46:31 2020 +0100

    Fix typo
---
 src/main/java/org/apache/bcel/classfile/ConstantPool.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/classfile/ConstantPool.java b/src/main/java/org/apache/bcel/classfile/ConstantPool.java
index c2926c0..3350135 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantPool.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantPool.java
@@ -28,7 +28,7 @@ import org.apache.bcel.Const;
  * a parsed classfile. It may contain null references, due to the JVM
  * specification that skips an entry after an 8-byte constant (double,
  * long) entry.  Those interested in generating constant pools
- * programatically should see <a href="../generic/ConstantPoolGen.html">
+ * programmatically should see <a href="../generic/ConstantPoolGen.html">
  * ConstantPoolGen</a>.
 
  * @see     Constant


[commons-bcel] 02/02: Fix typo

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit fead9f082a68b00bf99bdc053dd7973921ae672f
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Sep 16 17:47:06 2020 +0100

    Fix typo
---
 src/main/java/org/apache/bcel/classfile/JavaClass.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/classfile/JavaClass.java b/src/main/java/org/apache/bcel/classfile/JavaClass.java
index 927015d..9a07272 100644
--- a/src/main/java/org/apache/bcel/classfile/JavaClass.java
+++ b/src/main/java/org/apache/bcel/classfile/JavaClass.java
@@ -41,7 +41,7 @@ import org.apache.bcel.util.SyntheticRepository;
  * fields, methods and commands contained in a Java .class file.
  * See <a href="https://docs.oracle.com/javase/specs/">JVM specification</a> for details.
  * The intent of this class is to represent a parsed or otherwise existing
- * class file.  Those interested in programatically generating classes
+ * class file.  Those interested in programmatically generating classes
  * should see the <a href="../generic/ClassGen.html">ClassGen</a> class.
 
  * @see org.apache.bcel.generic.ClassGen