Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B65F91187D for ; Sun, 13 Apr 2014 14:08:26 +0000 (UTC) Received: (qmail 53471 invoked by uid 500); 13 Apr 2014 14:08:24 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 53150 invoked by uid 500); 13 Apr 2014 14:08:23 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 53141 invoked by uid 99); 13 Apr 2014 14:08:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 Apr 2014 14:08:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 Apr 2014 14:08:21 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4A69823888FE; Sun, 13 Apr 2014 14:07:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1586988 - /commons/proper/net/trunk/src/test/java/org/apache/commons/net/pop3/POP3ClientCommandsTest.java Date: Sun, 13 Apr 2014 14:07:58 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140413140758.4A69823888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Sun Apr 13 14:07:57 2014 New Revision: 1586988 URL: http://svn.apache.org/r1586988 Log: Remove useless Javadoc (causes IDE Javadoc warnings) Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/pop3/POP3ClientCommandsTest.java Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/pop3/POP3ClientCommandsTest.java URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/pop3/POP3ClientCommandsTest.java?rev=1586988&r1=1586987&r2=1586988&view=diff ============================================================================== --- commons/proper/net/trunk/src/test/java/org/apache/commons/net/pop3/POP3ClientCommandsTest.java (original) +++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/pop3/POP3ClientCommandsTest.java Sun Apr 13 14:07:57 2014 @@ -23,8 +23,6 @@ import java.io.IOException; import java.io.Reader; /** - * @author [Net] - * @version $Id$ * * The POP3* tests all presume the existence of the following parameters: * mailserver: localhost (running on the default port 110) @@ -49,9 +47,6 @@ public class POP3ClientCommandsTest exte String password = POP3Constants.password; String mailhost = POP3Constants.mailhost; - /** - * - */ public POP3ClientCommandsTest(String name) { super(name); @@ -85,10 +80,6 @@ public class POP3ClientCommandsTest exte assertEquals(POP3.TRANSACTION_STATE, p.getState()); } - /** - * - * - */ public void testNoopCommand() throws Exception { reset(); @@ -106,10 +97,6 @@ public class POP3ClientCommandsTest exte assertFalse(p.noop()); } - /** - * - * - */ public void testStatus() throws Exception { reset(); @@ -144,10 +131,6 @@ public class POP3ClientCommandsTest exte assertNull(p.status()); } - /** - * - * - */ public void testListMessagesOnFullMailbox() throws Exception { reset(); @@ -171,10 +154,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListMessageOnFullMailbox() throws Exception { reset(); @@ -206,10 +185,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListMessagesOnEmptyMailbox() throws Exception { reset(); @@ -225,10 +200,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListMessageOnEmptyMailbox() throws Exception { reset(); @@ -240,10 +211,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListUniqueIDsOnFullMailbox() throws Exception { reset(); @@ -266,10 +233,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListUniqueIDOnFullMailbox() throws Exception { reset(); @@ -300,10 +263,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListUniqueIDsOnEmptyMailbox() throws Exception { reset(); @@ -319,10 +278,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testListUniqueIdentifierOnEmptyMailbox() throws Exception { reset(); @@ -334,10 +289,6 @@ public class POP3ClientCommandsTest exte assertNull(msg); } - /** - * - * - */ public void testRetrieveMessageOnFullMailbox() throws Exception { reset(); @@ -382,10 +333,6 @@ public class POP3ClientCommandsTest exte } } - /** - * - * - */ public void testRetrieveMessageOnEmptyMailbox() throws Exception { reset(); @@ -394,10 +341,6 @@ public class POP3ClientCommandsTest exte assertNull(p.retrieveMessage(1)); } - /** - * - * - */ public void testRetrieveMessageShouldFails() throws Exception { reset(); @@ -418,10 +361,6 @@ public class POP3ClientCommandsTest exte assertNull(p.retrieveMessage(1)); } - /** - * - * - */ public void testRetrieveMessageTopOnFullMailbox() throws Exception { reset(); @@ -441,10 +380,6 @@ public class POP3ClientCommandsTest exte } } - /** - * - * - */ public void testRetrieveOverSizedMessageTopOnFullMailbox() throws Exception { reset(); @@ -486,10 +421,6 @@ public class POP3ClientCommandsTest exte assertTrue(actualSize >= reportedSize); } - /** - * - * - */ public void testRetrieveMessageTopOnEmptyMailbox() throws Exception { reset(); @@ -498,10 +429,6 @@ public class POP3ClientCommandsTest exte assertNull(p.retrieveMessageTop(1, 10)); } - /** - * - * - */ public void testRetrieveMessageTopShouldFails() throws Exception { reset();