use of com.intellij.cvsSupport2.config.ImportConfiguration in project intellij-community by JetBrains.
the class ImportAction method onActionPerformed.
protected void onActionPerformed(CvsContext context, CvsTabbedWindow tabbedWindow, boolean successfully, CvsHandler handler) {
super.onActionPerformed(context, tabbedWindow, successfully, handler);
final ImportConfiguration importConfiguration = ImportConfiguration.getInstance();
if (successfully && importConfiguration.CHECKOUT_AFTER_IMPORT) {
createCheckoutAction(importConfiguration.MAKE_NEW_FILES_READ_ONLY).actionPerformed(context);
}
}
Aggregations