This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git

commit 834123915c77567c0b40eebb92f1fca5e5c0abae
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 11 17:36:09 2024 -0400

    Use final
---
 .../org/apache/commons/net/ftp/parser/FTPTimestampParserImplTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImplTest.java
 
b/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImplTest.java
index 7930b545..9f2b6c66 100644
--- 
a/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImplTest.java
+++ 
b/src/test/java/org/apache/commons/net/ftp/parser/FTPTimestampParserImplTest.java
@@ -204,7 +204,7 @@ java.text.ParseException: Timestamp 'Mar 13 02:33' could 
not be parsed using a s
     @Test
     @Disabled
     public void testNet710() throws ParseException {
-        Calendar serverTime = 
Calendar.getInstance(TimeZone.getTimeZone("EDT"), Locale.US);
+        final Calendar serverTime = 
Calendar.getInstance(TimeZone.getTimeZone("EDT"), Locale.US);
         serverTime.set(2022, 2, 16, 14, 0);
         new FTPTimestampParserImpl().parseTimestamp("Mar 13 02:33", 
serverTime);
     }

Reply via email to