nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 1a4cf45f0370692dc0f90ea31b0d9a69c735773b
parent 374df7021888d0c2d2e8ba691b2f4e230dcff1e0
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Wed,  3 Sep 2008 15:06:15 +1200

remove some unneeded 'unlet' calls

Diffstat:
Mplugin/NERD_tree.vim | 3---
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -665,7 +665,6 @@ endfunction
 "
 "Args:
 "path: a path object
-unlet s:oTreeDirNode.FindNode
 function! s:oTreeDirNode.FindNode(path)
     if a:path.Equals(self.path)
         return self
@@ -870,7 +869,6 @@ endfunction
 "
 "Args:
 "path: a path object representing the full filesystem path to the file/dir that the node represents
-unlet s:oTreeDirNode.New
 function! s:oTreeDirNode.New(path)
     if a:path.isDirectory != 1
         throw "NERDTree.TreeDirNode.InvalidArguments exception. A TreeDirNode object must be instantiated with a directory Path object."
@@ -934,7 +932,6 @@ function! s:oTreeDirNode.OpenRecursively2(forceOpen)
 endfunction
 
 "FUNCTION: oTreeDirNode.Refresh {{{3
-unlet s:oTreeDirNode.Refresh
 function! s:oTreeDirNode.Refresh()
     call self.path.Refresh()