summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/provider/ContactsContract.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java
index 93f834a..bfe90e6 100644
--- a/core/java/android/provider/ContactsContract.java
+++ b/core/java/android/provider/ContactsContract.java
@@ -247,57 +247,6 @@ public final class ContactsContract {
}
/**
- * @hide
- */
- public static final class Preferences {
-
- /**
- * A key in the {@link android.provider.Settings android.provider.Settings} provider
- * that stores the preferred sorting order for contacts (by given name vs. by family name).
- *
- * @hide
- */
- public static final String SORT_ORDER = "android.contacts.SORT_ORDER";
-
- /**
- * The value for the SORT_ORDER key corresponding to sorting by given name first.
- *
- * @hide
- */
- public static final int SORT_ORDER_PRIMARY = 1;
-
- /**
- * The value for the SORT_ORDER key corresponding to sorting by family name first.
- *
- * @hide
- */
- public static final int SORT_ORDER_ALTERNATIVE = 2;
-
- /**
- * A key in the {@link android.provider.Settings android.provider.Settings} provider
- * that stores the preferred display order for contacts (given name first vs. family
- * name first).
- *
- * @hide
- */
- public static final String DISPLAY_ORDER = "android.contacts.DISPLAY_ORDER";
-
- /**
- * The value for the DISPLAY_ORDER key corresponding to showing the given name first.
- *
- * @hide
- */
- public static final int DISPLAY_ORDER_PRIMARY = 1;
-
- /**
- * The value for the DISPLAY_ORDER key corresponding to showing the family name first.
- *
- * @hide
- */
- public static final int DISPLAY_ORDER_ALTERNATIVE = 2;
- }
-
- /**
* A Directory represents a contacts corpus, e.g. Local contacts,
* Google Apps Global Address List or Corporate Global Address List.
* <p>