(Collection<E> c)
| 45 | protected final Set<E> set; |
| 46 | |
| 47 | public SetFact(Collection<E> c) { |
| 48 | if (c instanceof GenericBitSet<E> s) { |
| 49 | set = s.copy(); |
| 50 | } else { |
| 51 | set = Sets.newHybridSet(c); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | public SetFact() { |
| 56 | this(Collections.emptySet()); |
nothing calls this directly
no test coverage detected