private final Set annotations;
private final Optional selection;
<<<<<<< HEAD
private ContentQuery(Iterable uris, Iterable ids, Iterable annotations) {
checkArgument(Iterables.isEmpty(uris) ^ Iterables.isEmpty(ids));
=======
private ContentQuery(Iterable uris, Iterable ids, Iterable annotations, Optional selection) {
>>>>>>> 5c7eabcc601a18039766bad4fc2496953a982779
this.uris = ImmutableSet.copyOf(uris);
this.ids = ImmutableSet.copyOf(ids);
this.annotations = ImmutableSet.copyOf(annotations); |