Various fixes

This commit is contained in:
crschnick 2024-02-17 13:40:50 +00:00
parent 68cdedf796
commit d3fef8efac
2 changed files with 1 additions and 2 deletions

View file

@ -290,6 +290,7 @@ public abstract class DataStorage {
}
if (newParent.isPresent()) {
newParent.get().setChildrenCache(null);
newParent.get().setExpanded(true);
}
var toAdd = Stream.concat(Stream.of(entry), children.stream()).toArray(DataStoreEntry[]::new);
listeners.forEach(storageListener -> storageListener.onStoreAdd(toAdd));

View file

@ -5,8 +5,6 @@ import java.util.UUID;
public interface ShellDialectAskpass {
String prepareLocalPassthroughContent(ShellControl sc, UUID requestId, String prefix) throws Exception;
String prepareStderrPassthroughContent(ShellControl sc, UUID requestId, String prefix) throws Exception;
String prepareFixedContent(ShellControl sc, String fileName, List<String> s) throws Exception;