use of com.intellij.cvsSupport2.cvsoperations.cvsEdit.UneditOperation in project intellij-community by JetBrains.
the class CommandCvsHandler method createUneditHandler.
public static CvsHandler createUneditHandler(VirtualFile[] selectedFiles, boolean makeNewFilesReadOnly) {
final UneditOperation operation = new UneditOperation(makeNewFilesReadOnly);
operation.addFiles(selectedFiles);
return new CommandCvsHandler(CvsBundle.message("operation.name.unedit"), operation, FileSetToBeUpdated.selectedFiles(selectedFiles));
}
Aggregations