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-net.git
The following commit(s) were added to refs/heads/master by this push:
new a5fc4e80 Javadoc
a5fc4e80 is described below
commit a5fc4e808f6a203077ad966f703bc59328999ca7
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Feb 23 14:54:15 2024 -0500
Javadoc
---
src/main/java/org/apache/commons/net/imap/IMAPReply.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/main/java/org/apache/commons/net/imap/IMAPReply.java
b/src/main/java/org/apache/commons/net/imap/IMAPReply.java
index 070b1cb2..a656e4cd 100644
--- a/src/main/java/org/apache/commons/net/imap/IMAPReply.java
+++ b/src/main/java/org/apache/commons/net/imap/IMAPReply.java
@@ -24,7 +24,7 @@ import java.util.regex.Pattern;
import org.apache.commons.net.MalformedServerReplyException;
/**
- * IMAPReply stores IMAP reply code constants.
+ * Stores IMAP reply code constants.
*/
public final class IMAPReply {
/** The reply code indicating success of an operation. */
@@ -131,7 +131,7 @@ public final class IMAPReply {
}
/**
- * Checks if the reply line is a continuation, i.e. starts with "+"
+ * Tests whether the reply line is a continuation, i.e. starts with "+"
*
* @param replyCode the code to be checked
* @return {@code true} if the response was a continuation
@@ -141,7 +141,7 @@ public final class IMAPReply {
}
/**
- * Checks if the reply line is a continuation, i.e. starts with "+"
+ * Tests whether if the reply line is a continuation, i.e. starts with "+"
*
* @param line the line to be checked
* @return {@code true} if the line is a continuation
@@ -151,7 +151,7 @@ public final class IMAPReply {
}
/**
- * Checks whether the reply code indicates success or not
+ * Tests whether whether the reply code indicates success or not
*
* @param replyCode the code to check
* @return {@code true} if the code equals {@link #OK}
@@ -161,7 +161,7 @@ public final class IMAPReply {
}
/**
- * Checks if the reply line is untagged - e.g. "* OK ..."
+ * Tests whether if the reply line is untagged - e.g. "* OK ..."
*
* @param line to be checked
* @return {@code true} if the line is untagged