Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-08-18 18:22:34 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2021-08-18 18:22:34 +0300
commit0017212067d3e26da255ce710c06530043ed6648 (patch)
tree11b448c2f8833d09f119b231e0671c9f1e51fcb0
parent2cf4ff147e37db631521e59968f86f18dbca5835 (diff)
refactor: remove unused mutex
-rw-r--r--internal/source/gitlab/gitlab.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/source/gitlab/gitlab.go b/internal/source/gitlab/gitlab.go
index b9291b59..b79b434f 100644
--- a/internal/source/gitlab/gitlab.go
+++ b/internal/source/gitlab/gitlab.go
@@ -7,7 +7,6 @@ import (
"path"
"sort"
"strings"
- "sync"
"gitlab.com/gitlab-org/labkit/log"
@@ -24,7 +23,6 @@ import (
// information about domains from GitLab instance.
type Gitlab struct {
client api.Resolver
- mu sync.RWMutex
enableDisk bool
}