Skip to content

Commit

Permalink
remove a couple of useless lines
Browse files Browse the repository at this point in the history
  • Loading branch information
marty committed Oct 8, 2009
1 parent e899bed commit 93a0a42
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions plugin/NERD_tree.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down Expand Up @@ -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 = {}
Expand Down

0 comments on commit 93a0a42

Please sign in to comment.