From 1d50eff6d5bffc036ca47944e16d5002e2f87d8f Mon Sep 17 00:00:00 2001 From: Sebb Date: Tue, 7 May 2024 08:13:11 +0100 Subject: [PATCH] Accidental commit --- .../ftp/parser/FTPTimestampNET710Test.java | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampNET710Test.java 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 5f823b385..000000000 --- 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); - } - -}