()
| 38 | private static final Factory<Set<Object>> EMPTY_FACTORY = InstanceFactory.create(emptySet()); |
| 39 | |
| 40 | @SuppressWarnings({"unchecked", "rawtypes"}) // safe covariant cast |
| 41 | public static <T> Factory<Set<T>> empty() { |
| 42 | return (Factory) EMPTY_FACTORY; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Constructs a new {@link Builder} for a {@link SetFactory} with {@code individualProviderSize} |
no outgoing calls
no test coverage detected