Removed unused "mutex" field

fixes #11659

Signed-off-by: Alena Prokharchyk <alena@rancher.com>
Upstream-commit: dabd8a02aeff8b2122efa0b55de4ba52c429f936
Component: engine
This commit is contained in:
Alena Prokharchyk
2015-03-23 18:46:24 -07:00
parent bb8cd4ea0b
commit 68100310d8

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) {