use of com.intellij.vcs.log.VcsLogFileHistoryProvider in project intellij-community by JetBrains.
the class TabbedShowHistoryAction method showNewFileHistory.
private static void showNewFileHistory(@NotNull Project project, @NotNull FilePath path) {
VcsLogFileHistoryProvider historyProvider = ServiceManager.getService(VcsLogFileHistoryProvider.class);
historyProvider.showFileHistory(project, path, null);
}
Aggregations