diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-02-28 17:08:52 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-01 13:20:16 +0000 |
commit | 2537d0dd0010d8ba75baec21050917e11ade0ff4 (patch) | |
tree | 4b4020b2f8b5cff69ce9b305670011bdf63d9cec /vendor/gopkg.in/fsnotify.v1/fen.go | |
parent | b2a5d5aa5ad185afa15b4f2fbb144093fe88fd64 (diff) | |
download | podman-2537d0dd0010d8ba75baec21050917e11ade0ff4.tar.gz podman-2537d0dd0010d8ba75baec21050917e11ade0ff4.tar.bz2 podman-2537d0dd0010d8ba75baec21050917e11ade0ff4.zip |
Remove unused vendor gopkg.in/fsnotify.v1
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #425
Approved by: rhatdan
Diffstat (limited to 'vendor/gopkg.in/fsnotify.v1/fen.go')
-rw-r--r-- | vendor/gopkg.in/fsnotify.v1/fen.go | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/gopkg.in/fsnotify.v1/fen.go b/vendor/gopkg.in/fsnotify.v1/fen.go deleted file mode 100644 index ced39cb88..000000000 --- a/vendor/gopkg.in/fsnotify.v1/fen.go +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright 2010 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build solaris - -package fsnotify - -import ( - "errors" -) - -// Watcher watches a set of files, delivering events to a channel. -type Watcher struct { - Events chan Event - Errors chan error -} - -// NewWatcher establishes a new watcher with the underlying OS and begins waiting for events. -func NewWatcher() (*Watcher, error) { - return nil, errors.New("FEN based watcher not yet supported for fsnotify\n") -} - -// Close removes all watches and closes the events channel. -func (w *Watcher) Close() error { - return nil -} - -// Add starts watching the named file or directory (non-recursively). -func (w *Watcher) Add(name string) error { - return nil -} - -// Remove stops watching the the named file or directory (non-recursively). -func (w *Watcher) Remove(name string) error { - return nil -} |