OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / github.com / rjeczalik / notify / event_trigger.go
diff --git a/vendor/github.com/rjeczalik/notify/event_trigger.go b/vendor/github.com/rjeczalik/notify/event_trigger.go
deleted file mode 100644 (file)
index 94470fd..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2014-2015 The Notify Authors. All rights reserved.
-// Use of this source code is governed by the MIT license that can be
-// found in the LICENSE file.
-
-// +build darwin,kqueue dragonfly freebsd netbsd openbsd solaris
-
-package notify
-
-type event struct {
-       p  string
-       e  Event
-       d  bool
-       pe interface{}
-}
-
-func (e *event) Event() Event { return e.e }
-
-func (e *event) Path() string { return e.p }
-
-func (e *event) Sys() interface{} { return e.pe }
-
-func (e *event) isDir() (bool, error) { return e.d, nil }