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-chain.git
The following commit(s) were added to refs/heads/master by this push:
new e16a1d2 Javadoc fixes
e16a1d2 is described below
commit e16a1d276967731eff86a7ec700029f21b8c2d6c
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Jan 13 14:45:35 2023 -0500
Javadoc fixes
---
base/src/main/java/org/apache/commons/chain2/base/DispatchCommand.java | 2 +-
base/src/main/java/org/apache/commons/chain2/impl/ContextBase.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/base/src/main/java/org/apache/commons/chain2/base/DispatchCommand.java
b/base/src/main/java/org/apache/commons/chain2/base/DispatchCommand.java
index d9a97c5..f5fe069 100644
--- a/base/src/main/java/org/apache/commons/chain2/base/DispatchCommand.java
+++ b/base/src/main/java/org/apache/commons/chain2/base/DispatchCommand.java
@@ -87,7 +87,7 @@ public abstract class DispatchCommand<K, V, C extends
Context<K, V>> implements
/**
* Extract the dispatch method. The base implementation uses the command's
* <code>method</code> property as the name of a method to look up, or, if
that is not defined,
- * looks up the the method name in the Context using the
<code>methodKey</code>.
+ * looks up the method name in the Context using the
<code>methodKey</code>.
*
* @param context The Context being processed by this Command.
* @return The method to execute
diff --git a/base/src/main/java/org/apache/commons/chain2/impl/ContextBase.java
b/base/src/main/java/org/apache/commons/chain2/impl/ContextBase.java
index 366a5fc..509d99d 100644
--- a/base/src/main/java/org/apache/commons/chain2/impl/ContextBase.java
+++ b/base/src/main/java/org/apache/commons/chain2/impl/ContextBase.java
@@ -582,7 +582,7 @@ public class ContextBase extends ContextMap<String, Object>
{
public boolean remove(Object obj) {
if (obj instanceof Map.Entry) {
- /* The remove method is expecting an input of the the same
+ /* The remove method is expecting an input of the same
* type as the entry set. This precondition is checked above,
* so we can safely suppress the unchecked warnings. */
@SuppressWarnings("unchecked")