addedFiles.add(change.getAfterRevision().getFile().getVirtualFile());
}else {
exceptions.add(new VcsException("only MODIFIED/ADDED (!= "+change.getFileStatus()+"files are currently supported" ));
}
}
CheckinAPICommand checkinAPICommand = new CheckinAPICommand();
try {
checkinAPICommand.executeCommand(mksVcs, exceptions, modifiedFiles.toArray(new VirtualFile[modifiedFiles.size()]));
} catch (VcsException e) {
//noinspection ThrowableInstanceNeverThrown
exceptions.add(e);
}
AddMemberAPICommand addMemberAPICommand = new AddMemberAPICommand();