Remove unneeded _.clone call

This is no longer needed after upgrading underscore which
fixed a bug with object equality across objects created in
different contexts.
This commit is contained in:
Kevin Sawicki
2013-03-11 13:39:51 -07:00
parent 03b32ec29c
commit 2ecb2d9ba1

View File

@@ -107,7 +107,7 @@ class Git
headCheckedOut
getDiffStats: (path) ->
_.clone(@getRepo().getDiffStats(@relativize(path)))
@getRepo().getDiffStats(@relativize(path))
isSubmodule: (path) ->
@getRepo().isSubmodule(@relativize(path))