summaryrefslogtreecommitdiff
path: root/plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java')
-rw-r--r--plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java b/plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java
index f0ad3b7a5e31..8799c0e69651 100644
--- a/plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java
+++ b/plugins/git4idea/src/git4idea/actions/GitCompareWithBranchAction.java
@@ -15,6 +15,7 @@
*/
package git4idea.actions;
+import com.intellij.dvcs.DvcsUtil;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.actionSystem.Presentation;
@@ -70,7 +71,7 @@ public class GitCompareWithBranchAction extends DumbAwareAction {
String currentRevision = repository.getCurrentRevision();
LOG.assertTrue(currentRevision != null,
"Current revision is null for " + repository + ". Compare with branch shouldn't be available for fresh repository");
- head = GitUtil.getShortHash(currentRevision);
+ head = DvcsUtil.getShortHash(currentRevision);
}
else {
head = currentBranch.getName();