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 2012/01/11 23:44:21 UTC

svn commit: r1230300 - /commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java

Author: sebb
Date: Wed Jan 11 22:44:20 2012
New Revision: 1230300

URL: http://svn.apache.org/viewvc?rev=1230300&view=rev
Log:
Tab police

Modified:
    commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java

Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java?rev=1230300&r1=1230299&r2=1230300&view=diff
==============================================================================
--- commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java (original)
+++ commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java Wed Jan 11 22:44:20 2012
@@ -547,7 +547,7 @@ implements Configurable
     private boolean __storeFile(int command, String remote, InputStream local)
     throws IOException
     {
-    	return _storeFile(FTPCommand.getCommand(command), remote, local);
+        return _storeFile(FTPCommand.getCommand(command), remote, local);
     }
     
     protected boolean _storeFile(String command, String remote, InputStream local)
@@ -596,7 +596,7 @@ implements Configurable
     private OutputStream __storeFileStream(int command, String remote)
     throws IOException
     {
-    	return _storeFileStream(FTPCommand.getCommand(command), remote);
+        return _storeFileStream(FTPCommand.getCommand(command), remote);
     }
 
     protected OutputStream _storeFileStream(String command, String remote)
@@ -647,7 +647,7 @@ implements Configurable
     protected Socket _openDataConnection_(int command, String arg)
     throws IOException
     {
-    	return _openDataConnection_(FTPCommand.getCommand(command), arg);
+        return _openDataConnection_(FTPCommand.getCommand(command), arg);
     }
 
     /**
@@ -1658,7 +1658,7 @@ implements Configurable
     public boolean retrieveFile(String remote, OutputStream local)
     throws IOException
     {
-    	return _retrieveFile(FTPCommand.getCommand(FTPCommand.RETR), remote, local);
+        return _retrieveFile(FTPCommand.getCommand(FTPCommand.RETR), remote, local);
     }
 
     protected boolean _retrieveFile(String command, String remote, OutputStream local)
@@ -1728,7 +1728,7 @@ implements Configurable
      ***/
     public InputStream retrieveFileStream(String remote) throws IOException
     {
-    	return _retrieveFileStream(FTPCommand.getCommand(FTPCommand.RETR), remote);
+        return _retrieveFileStream(FTPCommand.getCommand(FTPCommand.RETR), remote);
     }
 
     protected InputStream _retrieveFileStream(String command, String remote)