Various small improvements

This commit is contained in:
crschnick
2023-07-04 01:28:33 +00:00
parent d84789b995
commit 313cc922ee
44 changed files with 523 additions and 166 deletions
@@ -11,6 +11,10 @@ public class FileNames {
}
public static String toDirectory(String path) {
if (path == null) {
return null;
}
if (path.endsWith("/") || path.endsWith("\\")) {
return path;
}
@@ -1,3 +0,0 @@
package io.xpipe.core.store;
public interface LeafShellStore extends DataStore {}