From 2c8a08b690d24547ab38481d4570d77e79918239 Mon Sep 17 00:00:00 2001 From: crschnick Date: Mon, 24 Apr 2023 15:11:40 +0000 Subject: [PATCH] Fix for pss io --- .../main/java/io/xpipe/core/store/ConnectionFileSystem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/io/xpipe/core/store/ConnectionFileSystem.java b/core/src/main/java/io/xpipe/core/store/ConnectionFileSystem.java index b67b9e40f..7475801a2 100644 --- a/core/src/main/java/io/xpipe/core/store/ConnectionFileSystem.java +++ b/core/src/main/java/io/xpipe/core/store/ConnectionFileSystem.java @@ -15,10 +15,10 @@ import java.util.stream.Stream; public class ConnectionFileSystem implements FileSystem { @JsonIgnore - private final ShellControl shellControl; + protected final ShellControl shellControl; @JsonIgnore - private final ShellStore store; + protected final ShellStore store; public ConnectionFileSystem(ShellControl shellControl, ShellStore store) { this.shellControl = shellControl;