From dfadf1e8df7ec85167c21353b8bc670f612310e5 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 27 Jul 2015 15:40:36 +1000 Subject: [PATCH] Deleted Op. --- fuseops/ops.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/fuseops/ops.go b/fuseops/ops.go index 11d9271..b487ac8 100644 --- a/fuseops/ops.go +++ b/fuseops/ops.go @@ -22,17 +22,6 @@ import ( "github.com/jacobsa/fuse/internal/fusekernel" ) -// A common interface implemented by all ops in this package. Use a type switch -// to find particular concrete types, responding with fuse.ENOSYS if a type is -// not supported. -type Op interface { - // A short description of the op, to be used in logging. - ShortDesc() string - - // A long description of the op, to be used in debug logging. - DebugString() string -} - //////////////////////////////////////////////////////////////////////// // Inodes ////////////////////////////////////////////////////////////////////////