no$e.java 893 Bytes
import com.google.common.base.Preconditions;
import com.google.common.collect.ForwardingSet;
import java.util.Collection;
import java.util.Set;

final class no$e<E>
  extends ForwardingSet<E>
{
  private final Set<E> a;
  private final nn<? super E> b;
  
  public no$e(Set<E> paramSet, nn<? super E> paramnn)
  {
    this.a = ((Set)Preconditions.checkNotNull(paramSet));
    this.b = ((nn)Preconditions.checkNotNull(paramnn));
  }
  
  public final boolean add(E paramE)
  {
    this.b.a(paramE);
    return this.a.add(paramE);
  }
  
  public final boolean addAll(Collection<? extends E> paramCollection)
  {
    return this.a.addAll(no.b(paramCollection, this.b));
  }
  
  protected final Set<E> delegate()
  {
    return this.a;
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/no$e.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */