1
0
mirror of https://github.com/docker/cli.git synced 2026-01-23 15:21:32 +03:00

Merge pull request #11681 from alena1108/master

Removed unused "mutex" field
Upstream-commit: 3ebd7684870aa7144963ae3ed17c766c6192de44
Component: engine
This commit is contained in:
Arnaud Porterie
2015-03-23 19:40:38 -07:00

View File

@@ -5,7 +5,6 @@ import (
"log/syslog"
"os"
"path"
"sync"
"github.com/docker/docker/daemon/logger"
)
@@ -13,7 +12,6 @@ import (
type Syslog struct {
writer *syslog.Writer
tag string
mu sync.Mutex
}
func New(tag string) (logger.Logger, error) {