You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/06/04 19:49:20 UTC

svn commit: r1489533 [2/2] - in /commons/proper/net/trunk: ./ src/changes/ src/main/assembly/ src/main/java/examples/ src/main/java/examples/ftp/ src/main/java/org/apache/commons/net/ src/main/java/org/apache/commons/net/ftp/ src/main/java/org/apache/c...

Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/DownloadListings.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/DownloadListings.java?rev=1489533&r1=1489532&r2=1489533&view=diff
==============================================================================
--- commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/DownloadListings.java (original)
+++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/DownloadListings.java Tue Jun  4 17:49:00 2013
@@ -39,7 +39,7 @@ import org.apache.commons.net.io.Util;
  * Sample class to download LIST and MLSD listings from list of ftp sites.
  */
 public class DownloadListings extends FTPClient {
-    
+
     // Also used by MLDSComparison
     static final String DOWNLOAD_DIR = "target/ftptest";
 

Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/MLSDComparison.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/MLSDComparison.java?rev=1489533&r1=1489532&r2=1489533&view=diff
==============================================================================
--- commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/MLSDComparison.java (original)
+++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/MLSDComparison.java Tue Jun  4 17:49:00 2013
@@ -37,7 +37,7 @@ import org.junit.Test;
 
 /**
  * Attempt comparison of LIST and MLSD listings
- * 
+ *
  * TODO - needs some work.
  */
 public class MLSDComparison {

Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParserTest.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParserTest.java?rev=1489533&r1=1489532&r2=1489533&view=diff
==============================================================================
--- commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParserTest.java (original)
+++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParserTest.java Tue Jun  4 17:49:00 2013
@@ -70,7 +70,7 @@ public class UnixFTPEntryParserTest exte
             "drwxrwx---+ 23 500     500    0 Jan 10 13:09 testACL",
             "-rw-r--r--   1 1        3518644 May 25 12:12 std",
             "lrwxrwxrwx   1 neeme neeme             23 Mar  2 18:06 macros -> ./../../global/macros/.",
-            "-rw-r--r--   1 ftp      group with spaces in it as allowed in cygwin see bug 38634   83853 Jan 22  2001 zxJDBC-1.2.4.tar.gz", 
+            "-rw-r--r--   1 ftp      group with spaces in it as allowed in cygwin see bug 38634   83853 Jan 22  2001 zxJDBC-1.2.4.tar.gz",
                                                                                    // Bug 38634 => NET-16
             "crw-r----- 1 root kmem 0, 27 Jan 30 11:42 kmem",  //FreeBSD device
             "crw-------   1 root     sys      109,767 Jul  2  2004 pci@1c,600000:devctl", //Solaris device

Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/imap/IMAPTest.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/imap/IMAPTest.java?rev=1489533&r1=1489532&r2=1489533&view=diff
==============================================================================
--- commons/proper/net/trunk/src/test/java/org/apache/commons/net/imap/IMAPTest.java (original)
+++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/imap/IMAPTest.java Tue Jun  4 17:49:00 2013
@@ -13,7 +13,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
+ *
  */
 
 package org.apache.commons.net.imap;

Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/io/ToNetASCIIInputStreamTest.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/io/ToNetASCIIInputStreamTest.java?rev=1489533&r1=1489532&r2=1489533&view=diff
==============================================================================
--- commons/proper/net/trunk/src/test/java/org/apache/commons/net/io/ToNetASCIIInputStreamTest.java (original)
+++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/io/ToNetASCIIInputStreamTest.java Tue Jun  4 17:49:00 2013
@@ -13,7 +13,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
+ *
  */
 
 package org.apache.commons.net.io;
@@ -64,8 +64,8 @@ public class ToNetASCIIInputStreamTest {
         ToNetASCIIInputStream toNetASCII = new ToNetASCIIInputStream(source);
         byte[] output = new byte[data.length*2]; // cannot be longer than twice the input
 
-        int length = byByte ? 
-                getSingleBytes(toNetASCII, output) :  
+        int length = byByte ?
+                getSingleBytes(toNetASCII, output) :
                     getBuffer(toNetASCII, output);
 
         byte[] result = new byte[length];

Modified: commons/proper/net/trunk/src/test/java/org/apache/commons/net/util/Base64Test.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/test/java/org/apache/commons/net/util/Base64Test.java?rev=1489533&r1=1489532&r2=1489533&view=diff
==============================================================================
--- commons/proper/net/trunk/src/test/java/org/apache/commons/net/util/Base64Test.java (original)
+++ commons/proper/net/trunk/src/test/java/org/apache/commons/net/util/Base64Test.java Tue Jun  4 17:49:00 2013
@@ -13,7 +13,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- * 
+ *
  */
 
 package org.apache.commons.net.util;