Fix original file name being incorrectly replaced (#129)

This commit is contained in:
longjuan
2024-04-14 20:25:05 +08:00
committed by GitHub
parent f4ec56b7bc
commit 68b1a88b14

View File

@@ -6,6 +6,6 @@ import lombok.experimental.UtilityClass;
public class FilePathUtils { public class FilePathUtils {
public static String getFilePathByPlaceholder(String filePath) { public static String getFilePathByPlaceholder(String filePath) {
return PlaceholderReplacer.replacePlaceholders(filePath, ""); return PlaceholderReplacer.replacePlaceholders(filePath, null);
} }
} }