nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 93a0a422b4ae0a3e05d86f66dcbb62bf3c0c0fa8
parent e899bed4d7531d96f78bace67770795e0b8f70e2
Author: marty <martin_grenfell@msn.com>
Date:   Thu,  8 Oct 2009 16:15:53 +1300

remove a couple of useless lines

Diffstat:
Mplugin/NERD_tree.vim | 2--
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -461,7 +461,6 @@ endfunction
 
 "FUNCTION: KeyMap.Create(options) {{{3
 function! s:KeyMap.Create(options)
-    let newKeyMap = {}
     let newKeyMap = copy(self)
     let newKeyMap.key = a:options['key']
     let newKeyMap.quickhelpText = a:options['quickhelpText']
@@ -1047,7 +1046,6 @@ function! s:TreeFileNode.New(path)
     if a:path.isDirectory
         return s:TreeDirNode.New(a:path)
     else
-        let newTreeNode = {}
         let newTreeNode = copy(self)
         let newTreeNode.path = a:path
         let newTreeNode.parent = {}