Exemplo n.º 1
0
 @Override
 public boolean retainAllIterable(Iterable<?> iterable) {
   int oldSize = this.size;
   this.removeIfWith(Predicates2.notIn(), UnifiedSet.newSet(iterable));
   return this.size != oldSize;
 }