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 2019/12/10 03:04:28 UTC

[commons-bcel] branch master updated: Javadoc: Replace HTML tags with Javadoc {@code} notation.

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 c0a88c6  Javadoc: Replace <code></code> HTML tags with Javadoc {@code} notation.
c0a88c6 is described below

commit c0a88c678e3881aa53be5fe2a4a1d2f5524588c3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 9 22:04:24 2019 -0500

    Javadoc: Replace <code></code> HTML tags with Javadoc {@code} notation.
---
 src/main/java/org/apache/bcel/generic/Select.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/generic/Select.java b/src/main/java/org/apache/bcel/generic/Select.java
index 9cf205e..ebb0e17 100644
--- a/src/main/java/org/apache/bcel/generic/Select.java
+++ b/src/main/java/org/apache/bcel/generic/Select.java
@@ -25,7 +25,7 @@ import org.apache.bcel.util.ByteSequence;
 /**
  * Select - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.
  *
- * <p>We use our super's <code>target</code> property as the default target.
+ * <p>We use our super's {@code target} property as the default target.
  *
  * @see LOOKUPSWITCH
  * @see TABLESWITCH