You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2024/01/13 20:00:50 UTC

(commons-compress) branch master updated: Remove unused import

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-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new dcee6cbae Remove unused import
dcee6cbae is described below

commit dcee6cbae56b2d296e5cf78d3f21dda9611ad3b1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jan 13 15:00:45 2024 -0500

    Remove unused import
---
 src/main/java/org/apache/commons/compress/utils/FileNameUtils.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/java/org/apache/commons/compress/utils/FileNameUtils.java b/src/main/java/org/apache/commons/compress/utils/FileNameUtils.java
index b24959cd6..1ec6d747e 100644
--- a/src/main/java/org/apache/commons/compress/utils/FileNameUtils.java
+++ b/src/main/java/org/apache/commons/compress/utils/FileNameUtils.java
@@ -40,6 +40,7 @@ public class FileNameUtils {
      * @since 1.22
      */
     public static String getBaseName(final Path path) {
+        // TODO Use Commons IO 2.17.0
         if (path == null) {
             return null;
         }
@@ -77,6 +78,7 @@ public class FileNameUtils {
      * @since 1.22
      */
     public static String getExtension(final Path path) {
+        // TODO Use Commons IO 2.17.0
         if (path == null) {
             return null;
         }