This is an automated email from the ASF dual-hosted git repository. sebb 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 f82eed7 Javadoc f82eed7 is described below commit f82eed7d0bdaa45626054bba76e9e1657da0da49 Author: Sebb <s...@apache.org> AuthorDate: Fri Jun 19 22:55:46 2020 +0100 Javadoc --- src/main/java/org/apache/commons/net/nntp/NNTP.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/java/org/apache/commons/net/nntp/NNTP.java b/src/main/java/org/apache/commons/net/nntp/NNTP.java index 3ab7e7c..d08106e 100644 --- a/src/main/java/org/apache/commons/net/nntp/NNTP.java +++ b/src/main/java/org/apache/commons/net/nntp/NNTP.java @@ -985,24 +985,36 @@ public class NNTP extends SocketClient // DEPRECATED METHODS - for API compatibility only - DO NOT USE + /** + * @deprecated - for API compatibility only - DO NOT USE + */ @Deprecated public int article(int a) throws IOException { return article((long) a); } + /** + * @deprecated - for API compatibility only - DO NOT USE + */ @Deprecated public int body(int a) throws IOException { return body((long) a); } + /** + * @deprecated - for API compatibility only - DO NOT USE + */ @Deprecated public int head(int a) throws IOException { return head((long) a); } + /** + * @deprecated - for API compatibility only - DO NOT USE + */ @Deprecated public int stat(int a) throws IOException {