From 2ecb2d9ba154b4063bd344e31765d4c994f79086 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 11 Mar 2013 13:39:51 -0700 Subject: [PATCH] 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. --- src/app/git.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/git.coffee b/src/app/git.coffee index f824406e8..502b30203 100644 --- a/src/app/git.coffee +++ b/src/app/git.coffee @@ -107,7 +107,7 @@ class Git headCheckedOut getDiffStats: (path) -> - _.clone(@getRepo().getDiffStats(@relativize(path))) + @getRepo().getDiffStats(@relativize(path)) isSubmodule: (path) -> @getRepo().isSubmodule(@relativize(path))