commit | e0b2f1e2d01d1ac52ba207dc7ce76971d853298e | [log] [tgz] |
---|---|---|
author | Chiao Cheng <chiaocheng@google.com> | Tue Jun 12 13:07:56 2012 -0700 |
committer | Chiao Cheng <chiaocheng@google.com> | Tue Jun 12 13:07:56 2012 -0700 |
tree | 70371484a195f33b656c00810d0c847a5a431b10 | |
parent | 7b1170fc8e19f94ebdc21bf68b07c9759c1cf1ff [diff] [blame] |
Global import order fix. Changed import order to be in accordance with style guide: http://source.android.com/source/code-style.html#order-import-statements Static imports will be placed at the top since most existing files used that convention. It is also a style that can be handled by both eclipse and intellij. Change-Id: Ia7013c7a2d88e5fefb8f4975d121f7fcd3fcc462
diff --git a/src/com/android/contacts/GroupMemberLoader.java b/src/com/android/contacts/GroupMemberLoader.java index 1cef4d4..12e82ce 100644 --- a/src/com/android/contacts/GroupMemberLoader.java +++ b/src/com/android/contacts/GroupMemberLoader.java
@@ -15,8 +15,6 @@ */ package com.android.contacts; -import com.android.contacts.preference.ContactsPreferences; - import android.content.Context; import android.content.CursorLoader; import android.net.Uri; @@ -26,6 +24,8 @@ import android.provider.ContactsContract.Data; import android.provider.ContactsContract.Directory; +import com.android.contacts.preference.ContactsPreferences; + import java.util.ArrayList; import java.util.List;