protected RemoveWatchesResult execute(RemoveWatchesAction action, OWLAPIProject project, ExecutionContext executionContext) {
EventTag tag = project.getEventManager().getCurrentTag();
for(Watch<?> watch : action.getWatches()) {
project.getWatchManager().removeWatch(watch, action.getUserId());
}
return new RemoveWatchesResult(project.getEventManager().getEventsFromTag(tag));
}