blob: 20adae4001ee8515cdecf969f77985809f42ec41 [file] [log] [blame]
package org.testng.collections;
import java.util.HashSet;
import java.util.Set;
public class Sets {
public static <V> Set<V> newHashSet() {
return new HashSet<V>();
}
}