clean up math.java a little...standardize things to the actual Java class library...
[IRC.git] / Robust / src / Benchmarks / oooJava / DelaunayRefinement / Sets.java
1 import java.util.*;
2
3 public final class Sets {
4         
5     public Sets() {
6     }
7         
8     public static Object getAny(Collection c)
9         throws NoSuchElementException {
10         return c.iterator().next();
11     }
12 }