You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/03 12:33:00 UTC

[commons-bcel] branch master updated (41be68b3 -> 387f5646)

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

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


    from 41be68b3 Javadoc
     new 7634dd0e Add -Ddoclint=none to GHA builds
     new 387f5646 Fix Javadoc 8 warnings

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:
 .github/workflows/maven.yml                               | 2 +-
 src/main/java/org/apache/bcel/classfile/ConstantUtf8.java | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)


[commons-bcel] 01/02: Add -Ddoclint=none to GHA builds

Posted by gg...@apache.org.
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

commit 7634dd0e1b77cf1d2aefd80795dc67482b28caa5
Author: Gary David Gregory (Code signing key) <gg...@apache.org>
AuthorDate: Sat Jun 3 08:30:04 2023 -0400

    Add -Ddoclint=none to GHA builds
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e96ccda0..b391a56e 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -60,4 +60,4 @@ jobs:
         distribution: 'temurin'
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false
+      run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false -Ddoclint=none


[commons-bcel] 02/02: Fix Javadoc 8 warnings

Posted by gg...@apache.org.
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

commit 387f5646035752b257eea221d3db55d77e3aae1d
Author: Gary David Gregory (Code signing key) <gg...@apache.org>
AuthorDate: Sat Jun 3 08:32:56 2023 -0400

    Fix Javadoc 8 warnings
---
 src/main/java/org/apache/bcel/classfile/ConstantUtf8.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java
index 5b8aa66a..e8570595 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java
@@ -32,11 +32,11 @@ import org.apache.bcel.Const;
  * The following system properties govern caching this class performs.
  * </p>
  * <ul>
- * <li>{@value #SYS_PROP_CACHE_MAX_ENTRIES} (since 6.4): The size of the cache, by default 0, meaning caching is
+ * <li>{@link #SYS_PROP_CACHE_MAX_ENTRIES} (since 6.4): The size of the cache, by default 0, meaning caching is
  * disabled.</li>
- * <li>{@value #SYS_PROP_CACHE_MAX_ENTRY_SIZE} (since 6.0): The maximum size of the values to cache, by default 200, 0
+ * <li>{@link #SYS_PROP_CACHE_MAX_ENTRY_SIZE} (since 6.0): The maximum size of the values to cache, by default 200, 0
  * disables caching. Values larger than this are <em>not</em> cached.</li>
- * <li>{@value #SYS_PROP_STATISTICS} (since 6.0): Prints statistics on the console when the JVM exits.</li>
+ * <li>{@link #SYS_PROP_STATISTICS} (since 6.0): Prints statistics on the console when the JVM exits.</li>
  * </ul>
  * <p>
  * Here is a sample Maven invocation with caching disabled: