use of com.intellij.openapi.vcs.configurable.VcsContentAnnotationConfigurable in project intellij-community by JetBrains.
the class UnscrambleDialog method createUIComponents.
private void createUIComponents() {
myBottomPanel = new JPanel(new BorderLayout());
if (ProjectLevelVcsManager.getInstance(myProject).hasActiveVcss()) {
myConfigurable = new VcsContentAnnotationConfigurable(myProject);
myBottomPanel.add(myConfigurable.createComponent(), BorderLayout.CENTER);
myConfigurable.reset();
}
}
Aggregations