From 29dda0d5595595f274cf55cf603d62467d19b892 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 30 Sep 2023 15:58:13 +0300 Subject: [PATCH] Shorter declaration --- ood.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ood.go b/ood.go index 1be3957..52be37b 100644 --- a/ood.go +++ b/ood.go @@ -47,8 +47,8 @@ var ( FdOODTgts *os.File FdOODTgtsLock *os.File - OODCache map[string]bool = make(map[string]bool) - FileExistsCache map[string]bool = make(map[string]bool) + OODCache = make(map[string]bool) + FileExistsCache = make(map[string]bool) ErrMissingTarget = errors.New("invalid format of .rec: missing Target") ) -- 2.44.0