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
This commit is contained in:
ray.j.greenwell
2010-07-14 19:17:56 +00:00
parent 1f9786d291
commit 0b6b97e8c0
@@ -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<Object> LEXICAL_CASE_INSENSITIVE = new Comparator<Object>() {
public int compare (Object o1, Object o2)
{