diff --git a/projects/samskivert/src/java/com/samskivert/util/Collections.java b/projects/samskivert/src/java/com/samskivert/util/Collections.java index de921164..20e5b2a0 100644 --- a/projects/samskivert/src/java/com/samskivert/util/Collections.java +++ b/projects/samskivert/src/java/com/samskivert/util/Collections.java @@ -191,7 +191,7 @@ public class Collections * @return a synchronized view of the specified int set. */ public static IntSet synchronizedIntSet (IntSet s) { - return new SychronizedIntSet(s); + return new SynchronizedIntSet(s); } /**