Browse code

Removed unused "mutex" field

fixes #11659

Signed-off-by: Alena Prokharchyk <alena@rancher.com>

Alena Prokharchyk authored on 2015/03/24 10:46:24
Showing 1 changed files
... ...
@@ -5,7 +5,6 @@ import (
5 5
 	"log/syslog"
6 6
 	"os"
7 7
 	"path"
8
-	"sync"
9 8
 
10 9
 	"github.com/docker/docker/daemon/logger"
11 10
 )
... ...
@@ -13,7 +12,6 @@ import (
13 13
 type Syslog struct {
14 14
 	writer *syslog.Writer
15 15
 	tag    string
16
-	mu     sync.Mutex
17 16
 }
18 17
 
19 18
 func New(tag string) (logger.Logger, error) {