summaryrefslogtreecommitdiff
path: root/plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java')
-rw-r--r--plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java b/plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java
index a6488d4ce3d0..d0f051c50475 100644
--- a/plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java
+++ b/plugins/git4idea/src/git4idea/history/GitDiffFromHistoryHandler.java
@@ -15,6 +15,7 @@
*/
package git4idea.history;
+import com.intellij.dvcs.DvcsUtil;
import com.intellij.openapi.actionSystem.*;
import com.intellij.openapi.actionSystem.impl.SimpleDataContext;
import com.intellij.openapi.components.ServiceManager;
@@ -116,7 +117,7 @@ public class GitDiffFromHistoryHandler extends BaseDiffFromHistoryHandler<GitFil
@NotNull
@Override
protected String getPresentableName(@NotNull GitFileRevision revision) {
- return GitUtil.getShortHash(revision.getHash());
+ return DvcsUtil.getShortHash(revision.getHash());
}
@NotNull
@@ -301,7 +302,7 @@ public class GitDiffFromHistoryHandler extends BaseDiffFromHistoryHandler<GitFil
@NotNull private final GitFileRevision myParentRevision;
public ShowDiffWithParentAction(@NotNull FilePath filePath, @NotNull GitFileRevision rev, @NotNull GitFileRevision parent) {
- super(GitUtil.getShortHash(parent.getHash()));
+ super(DvcsUtil.getShortHash(parent.getHash()));
myFilePath = filePath;
myRevision = rev;
myParentRevision = parent;