aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/state/print.go
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-12-19 11:48:48 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-12-19 11:48:48 +0900
commitf796622c35ad15f4a8d2e91fb0437f566fc77e52 (patch)
tree0fd0ec8dcacd24d19466a2f95c2328059eb9e211 /internal/state/print.go
parent5d25bee7869e5ecec20e9bddc9f27d9b4a0b0988 (diff)
state: rename simple store implementation
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/state/print.go')
-rw-r--r--internal/state/print.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/state/print.go b/internal/state/print.go
index c747c04e..485fd67d 100644
--- a/internal/state/print.go
+++ b/internal/state/print.go
@@ -37,7 +37,7 @@ func MustPrintLauncherStateSimpleGlobal(w **tabwriter.Writer, runDir string) {
}
// obtain temporary store
- s := NewSimple(runDir, e.Name()).(*simpleStore)
+ s := NewSimple(runDir, e.Name()).(*multiStore)
// print states belonging to this store
s.mustPrintLauncherState(w, now)
@@ -50,7 +50,7 @@ func MustPrintLauncherStateSimpleGlobal(w **tabwriter.Writer, runDir string) {
}
}
-func (s *simpleStore) mustPrintLauncherState(w **tabwriter.Writer, now time.Time) {
+func (s *multiStore) mustPrintLauncherState(w **tabwriter.Writer, now time.Time) {
var innerErr error
if ok, err := s.Do(func(b Backend) {