diff --git a/src/java/com/samskivert/util/ComparableArrayList.java b/src/java/com/samskivert/util/ComparableArrayList.java index 8b5bd2a0..59890494 100644 --- a/src/java/com/samskivert/util/ComparableArrayList.java +++ b/src/java/com/samskivert/util/ComparableArrayList.java @@ -84,7 +84,7 @@ public class ComparableArrayList> return ArrayUtil.binarySearch(_elements, 0, _size, key); } - protected Comparator _comp = new Comparator() { + protected transient Comparator _comp = new Comparator() { public int compare (T o1, T o2) { if (o1 == o2) { // catches null == null return 0;