made BinStore a static class

This commit is contained in:
2023-07-27 20:45:37 +02:00
parent 74d0232160
commit 89f209130e
6 changed files with 9 additions and 18 deletions

View File

@@ -200,7 +200,7 @@ class Terminal implements Process {
}
private function getProgByName(name:String):Process {
var bin = BinStore.instance.getBinByAlias(name);
var bin = BinStore.getBinByAlias(name);
if (bin == null) {
return null;
}