libnetwork/drivers/macvlan, ipvlan: remove unused sync.Once

Both were added as part of the initial implementation in commit [moby@ea30113]
([libnetwork@1d6f2c5]), but never used.

[moby@ea30113]: ea30113303
[libnetwork@1d6f2c5]: 1d6f2c59c4

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-10-19 14:02:59 +02:00
parent 5276dd8e9a
commit a2f4f09f91
2 changed files with 0 additions and 2 deletions

View File

@@ -32,7 +32,6 @@ const (
type driver struct {
networks map[string]*network
sync.Once
sync.Mutex
store *datastore.Store
}

View File

@@ -26,7 +26,6 @@ const (
type driver struct {
networks map[string]*network
sync.Once
sync.Mutex
store *datastore.Store
}