// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.oliodevices.assist.app.core; import com.olio.data.object.user.OlioContact; import java.util.Comparator; // Referenced classes of package com.oliodevices.assist.app.core: // Utils static final class implements Comparator { public int compare(OlioContact oliocontact, OlioContact oliocontact1) { if (oliocontact.getName() == null && oliocontact1.getName() == null) { return 0; } if (oliocontact.getName() != null && oliocontact1.getName() == null) { return 1; } if (oliocontact.getName() == null) { return -1; } else { return oliocontact.getName().compareTo(oliocontact1.getName()); } } public volatile int compare(Object obj, Object obj1) { return compare((OlioContact)obj, (OlioContact)obj1); } () { } }