This commit is contained in:
crschnick
2025-02-09 15:41:37 +00:00
parent d7f11c5d1a
commit d2c31cdc6f
78 changed files with 24 additions and 179 deletions

View File

@@ -1,9 +1,6 @@
package io.xpipe.core.process;
import io.xpipe.core.store.FilePath;
import io.xpipe.core.util.FailableFunction;
public interface TerminalLaunchCommandFunction {
CommandBuilder apply(ShellControl shellControl, boolean requiresExecutableFirst, boolean supportsRawArguments, String file, boolean exit) throws Exception;
CommandBuilder apply(ShellControl shellControl, boolean requiresExecutableFirst, boolean supportsRawArguments, String file, boolean exit);
}

View File

@@ -15,9 +15,9 @@ import java.util.concurrent.locks.ReentrantLock;
import java.util.function.Consumer;
import java.util.function.Function;
@Getter
public class WrapperShellControl implements ShellControl {
@Getter
protected final ShellControl parent;
public WrapperShellControl(ShellControl parent) {

View File

@@ -1,7 +1,5 @@
package io.xpipe.core.util;
import com.fasterxml.jackson.databind.*;
public interface JacksonExtension {
Class<?> getType();