Remove plugin.path empty warning log in PluginUtils

This commit is contained in:
majialong 2025-10-05 00:45:58 +08:00
parent 2fda65147e
commit 2210830a8b
1 changed files with 0 additions and 3 deletions

View File

@ -209,9 +209,6 @@ public class PluginUtils {
for (String path : pluginPathElements) {
try {
Path pluginPathElement = Paths.get(path).toAbsolutePath();
if (pluginPath.isEmpty()) {
log.warn("Plugin path element is empty, evaluating to {}.", pluginPathElement);
}
if (!Files.exists(pluginPathElement)) {
throw new FileNotFoundException(pluginPathElement.toString());
}