Allow dumb replacement shell to depend on parent

This commit is contained in:
crschnick 2024-01-02 13:20:13 +00:00
parent 6cc2fd85a3
commit f398366246

View file

@ -40,7 +40,7 @@ public interface ShellDialect {
return other.equals(this);
}
default ShellDialect getDumbReplacementDialect() {
default ShellDialect getDumbReplacementDialect(ShellControl parent) {
return this;
}