From 1ac7e4cc5454aeebf358a718b53bcd4746547d79 Mon Sep 17 00:00:00 2001 From: Kirill Likhodedov Date: Wed, 10 Sep 2014 14:13:34 +0400 Subject: [PATCH] [git] don't load refs by default, e.g. in commits for push dialog --- plugins/git4idea/src/git4idea/history/GitHistoryUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java b/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java index a0030c8158a5..ef30e79436f3 100644 --- a/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java +++ b/plugins/git4idea/src/git4idea/history/GitHistoryUtils.java @@ -841,7 +841,7 @@ public class GitHistoryUtils { if (factory == null) { return Collections.emptyList(); } - return loadDetails(project, root, true, true, new NullableFunction() { + return loadDetails(project, root, false, true, new NullableFunction() { @Override @Nullable public GitCommit fun(GitLogRecord record) {