QueryUtils.copyAttributes(mylynQuery, googleQuery);
googleQuery.setMaxResults(Integer.MAX_VALUE);
issues = client.getQueryIssues(googleQuery, monitor);
}
for (IssuesEntry issue : issues.getEntries()) {
TaskData data = this.taskDataHandler.updateTaskData(repository, issue, monitor);
collector.accept(data);
}
return Status.OK_STATUS;
} catch (CoreException e) {
return new Status(IStatus.ERROR, GoogleCodeCorePlugin.PLUGIN_ID, "could not execute query", e);