This is an automated email from the ASF dual-hosted git repository.
johnnyv pushed a commit to branch 2.2.X
in repository https://gitbox.apache.org/repos/asf/mina.git
The following commit(s) were added to refs/heads/2.2.X by this push:
new 16a189e89 Fixed small typo
new db9b3bb61 Merge pull request #33 from chrjohn/patch-1
16a189e89 is described below
commit 16a189e890aa623a50552bb23585738b08077b3b
Author: Christoph John <[email protected]>
AuthorDate: Fri Aug 26 10:32:14 2022 +0200
Fixed small typo
nextFolter -> nextFilter
---
mina-core/src/main/java/org/apache/mina/filter/ssl/SslFilter.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mina-core/src/main/java/org/apache/mina/filter/ssl/SslFilter.java
b/mina-core/src/main/java/org/apache/mina/filter/ssl/SslFilter.java
index d63e4855e..791b9c3c5 100644
--- a/mina-core/src/main/java/org/apache/mina/filter/ssl/SslFilter.java
+++ b/mina-core/src/main/java/org/apache/mina/filter/ssl/SslFilter.java
@@ -227,7 +227,7 @@ public class SslFilter extends IoFilterAdapter {
* Internal method for performing post-connect operations; this can be
triggered
* during normal connect event or after the filter is added to the chain.
*
- * @param next The nextFolter to call in the chain
+ * @param next The nextFilter to call in the chain
* @param session The session instance
* @throws SSLException Any exception thrown by the SslHandler closing
*/
@@ -247,7 +247,7 @@ public class SslFilter extends IoFilterAdapter {
/**
* Called when the session is going to be closed. We must shutdown the
SslHandler instance.
*
- * @param next The nextFolter to call in the chain
+ * @param next The nextFilter to call in the chain
* @param session The session instance
* @param linger if true, write any queued messages before closing
* @throws SSLException Any exception thrown by the SslHandler closing