use of com.intellij.openapi.vcs.impl.UpToDateLineNumberProviderImpl in project intellij-community by JetBrains.
the class AnnotateToggleAction method doAnnotate.
public static void doAnnotate(@NotNull final Editor editor, @NotNull final Project project, @Nullable final VirtualFile currentFile, @NotNull final FileAnnotation fileAnnotation, @NotNull final AbstractVcs vcs) {
UpToDateLineNumberProvider upToDateLineNumberProvider = new UpToDateLineNumberProviderImpl(editor.getDocument(), project);
doAnnotate(editor, project, currentFile, fileAnnotation, vcs, upToDateLineNumberProvider);
}
Aggregations