soot.jimple.infoflow.collections.util.NonNullHashSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
The newest version!
package soot.jimple.infoflow.collections.util;
import java.util.HashSet;
public class NonNullHashSet extends HashSet {
private static final long serialVersionUID = -7700007534552087413L;
@Override
public boolean add(E e) {
if (e == null)
return false;
return super.add(e);
}
}