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-bsf.git
The following commit(s) were added to refs/heads/master by this push: new 06393b6 Javadoc fix (Java 11): Replace <tt>Foo</tt> with {@code Foo} 06393b6 is described below commit 06393b64bd2ac040069f925ba5fcbd7b5e0c6a2f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jul 31 11:33:59 2020 -0400 Javadoc fix (Java 11): Replace <tt>Foo</tt> with {@code Foo} --- src/main/java/org/apache/bsf/BSFEngine.java | 4 ++-- src/main/java/org/apache/bsf/BSFManager.java | 6 +++--- src/main/java/org/apache/bsf/util/event/EventAdapterRegistry.java | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/bsf/BSFEngine.java b/src/main/java/org/apache/bsf/BSFEngine.java index 8dd3388..d7314f3 100644 --- a/src/main/java/org/apache/bsf/BSFEngine.java +++ b/src/main/java/org/apache/bsf/BSFEngine.java @@ -115,7 +115,7 @@ public interface BSFEngine extends PropertyChangeListener { /** * This is used by an application to compile a value-returning expression. * The expr may be string or some other type, depending on the language. - * The generated code is dumped into the <tt>CodeBuffer</tt>. + * The generated code is dumped into the {@code CodeBuffer}. * * @param source (context info) the source of this expression * (e.g., filename) @@ -137,7 +137,7 @@ public interface BSFEngine extends PropertyChangeListener { /** * This is used by an application to compile some script. The * script may be string or some other type, depending on the - * language. The generated code is dumped into the <tt>CodeBuffer</tt>. + * language. The generated code is dumped into the {@code CodeBuffer}. * * @param source (context info) the source of this script * (e.g., filename) diff --git a/src/main/java/org/apache/bsf/BSFManager.java b/src/main/java/org/apache/bsf/BSFManager.java index 2cc805e..19492f6 100644 --- a/src/main/java/org/apache/bsf/BSFManager.java +++ b/src/main/java/org/apache/bsf/BSFManager.java @@ -300,7 +300,7 @@ public class BSFManager { /** * Compile the application of the given anonymous function of the given - * language to the given parameters into the given <tt>CodeBuffer</tt>. + * language to the given parameters into the given {@code CodeBuffer}. * * @param lang language identifier * @param source (context info) the source of this expression @@ -351,7 +351,7 @@ public class BSFManager { /** * Compile the given expression of the given language into the given - * <tt>CodeBuffer</tt>. + * {@code CodeBuffer}. * * @param lang language identifier * @param source (context info) the source of this expression @@ -394,7 +394,7 @@ public class BSFManager { /** * Compile the given script of the given language into the given - * <tt>CodeBuffer</tt>. + * {@code CodeBuffer}. * * @param lang language identifier * @param source (context info) the source of this script diff --git a/src/main/java/org/apache/bsf/util/event/EventAdapterRegistry.java b/src/main/java/org/apache/bsf/util/event/EventAdapterRegistry.java index 4839be8..28d8cd4 100644 --- a/src/main/java/org/apache/bsf/util/event/EventAdapterRegistry.java +++ b/src/main/java/org/apache/bsf/util/event/EventAdapterRegistry.java @@ -33,9 +33,9 @@ import org.apache.bsf.BSFManager; * and if it doesn't find one looks for a standard implementation of * that adapter in the org.apache.bsf.util.event.adapters package with a * standard naming convention. The naming convention it assumes is the - * following: for event listener type <tt>a.b.c.FooListener</tt>, + * following: for event listener type {@code a.b.c.FooListener}, * it loads an adapter of type - * <tt>org.apache.bsf.util.event.adapters.a_b_c_FooAdapter</tt>. + * {@code org.apache.bsf.util.event.adapters.a_b_c_FooAdapter}. * If both the loading and the dynamic generation fail, then a * <code>null</code> is returned. * <p>