From 0b6b97e8c01e31c239f52215f734aa19851a2f4d Mon Sep 17 00:00:00 2001 From: "ray.j.greenwell" Date: Wed, 14 Jul 2010 19:17:56 +0000 Subject: [PATCH] Update this @ReplacedBy annotation to show that we'd need nullsLast(). git-svn-id: https://samskivert.googlecode.com/svn/trunk@2798 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/Comparators.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/util/Comparators.java b/src/java/com/samskivert/util/Comparators.java index 3eebcfe9..c66fe208 100644 --- a/src/java/com/samskivert/util/Comparators.java +++ b/src/java/com/samskivert/util/Comparators.java @@ -32,7 +32,7 @@ public class Comparators /** * A comparator that compares the toString() value of all objects case insensitively. */ - @ReplacedBy("com.google.common.collect.Ordering.from(String.CASE_INSENSITIVE_ORDER).onResultOf(Functions.toStringFunction()") + @ReplacedBy("com.google.common.collect.Ordering.from(String.CASE_INSENSITIVE_ORDER).onResultOf(Functions.toStringFunction()).nullsLast()") public static final Comparator LEXICAL_CASE_INSENSITIVE = new Comparator() { public int compare (Object o1, Object o2) {