Skip to content

Commit 67534ea

Browse files
author
Rory Winston
committed
Rename and move
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/net/branches/NET_2_0@761990 13f79535-47bb-0310-9956-ffa450edef68
1 parent ee684ca commit 67534ea

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/main/java/examples/FTPExample.java renamed to src/main/java/examples/ftp/FTPExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package examples;
18+
package examples.ftp;
1919

2020
import java.io.FileInputStream;
2121
import java.io.FileOutputStream;

src/main/java/examples/FTPSExample.java renamed to src/main/java/examples/ftp/FTPSExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package examples;
18+
package examples.ftp;
1919

2020
import java.io.FileInputStream;
2121
import java.io.FileOutputStream;

src/main/java/examples/server2serverFTP.java renamed to src/main/java/examples/ftp/ServerToServerFTP.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package examples;
18+
package examples.ftp;
1919

2020
import java.io.IOException;
2121
import java.io.PrintWriter;
@@ -37,7 +37,7 @@
3737
* Usage: ftp <host1> <user1> <pass1> <file1> <host2> <user2> <pass2> <file2>
3838
* <p>
3939
***/
40-
public final class server2serverFTP
40+
public final class ServerToServerFTP
4141
{
4242

4343
public static final void main(String[] args)

src/main/java/examples/tftp.java renamed to src/main/java/examples/ftp/TFTPExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package examples;
18+
package examples.ftp;
1919

2020
import java.io.File;
2121
import java.io.FileInputStream;
@@ -44,7 +44,7 @@
4444
* -b Use binary transfer mode
4545
* <p>
4646
***/
47-
public final class tftp
47+
public final class TFTPExample
4848
{
4949
static final String USAGE =
5050
"Usage: tftp [options] hostname localfile remotefile\n\n" +

0 commit comments

Comments
 (0)