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 1d50eff6 Accidental commit
1d50eff6 is described below
commit 1d50eff6d5bffc036ca47944e16d5002e2f87d8f
Author: Sebb <[email protected]>
AuthorDate: Tue May 7 08:13:11 2024 +0100
Accidental commit
---
.../net/ftp/parser/FTPTimestampNET710Test.java | 21 ---------------------
1 file changed, 21 deletions(-)
diff --git
a/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampNET710Test.java
b/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampNET710Test.java
deleted file mode 100644
index 5f823b38..00000000
---
a/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampNET710Test.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.apache.commons.net.ftp.parser;
-
-
-import java.text.ParseException;
-import java.util.Calendar;
-import java.util.Locale;
-import java.util.TimeZone;
-
-/**
-* Test NET710
-*/
-public class FTPTimestampNET710Test {
-
- public static void main(String [] args) throws ParseException {
- Calendar serverTime =
Calendar.getInstance(TimeZone.getTimeZone("EDT"), Locale.US);
- serverTime.set(2022, 2, 16, 14, 0);
- Calendar p = new FTPTimestampParserImpl().parseTimestamp("Mar 13
02:33", serverTime);
- System.out.println(p);
- }
-
-}