aboutsummaryrefslogtreecommitdiffstats
path: root/java-overridable/src
diff options
context:
space:
mode:
authorSandeep Siddhartha <sansid@google.com>2014-10-14 00:06:51 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-14 00:06:52 +0000
commit59f5988a16bfd979f748ecd356b528f0b933a42c (patch)
treeea95b8157020a33ac37a86c72db0f334e54f0fef /java-overridable/src
parent164a49969e0ae8811f0e28ad6595421de501521d (diff)
parent19084d076a97ba8ea55d84d4cd266ca74071312f (diff)
downloadlatinime-59f5988a16bfd979f748ecd356b528f0b933a42c.tar.gz
latinime-59f5988a16bfd979f748ecd356b528f0b933a42c.tar.xz
latinime-59f5988a16bfd979f748ecd356b528f0b933a42c.zip
Merge "Cleanup LoginAccountUtils"
Diffstat (limited to 'java-overridable/src')
-rw-r--r--java-overridable/src/com/android/inputmethod/latin/accounts/LoginAccountUtils.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/java-overridable/src/com/android/inputmethod/latin/accounts/LoginAccountUtils.java b/java-overridable/src/com/android/inputmethod/latin/accounts/LoginAccountUtils.java
index 70f152acb..e07a9f358 100644
--- a/java-overridable/src/com/android/inputmethod/latin/accounts/LoginAccountUtils.java
+++ b/java-overridable/src/com/android/inputmethod/latin/accounts/LoginAccountUtils.java
@@ -16,16 +16,20 @@
package com.android.inputmethod.latin.accounts;
-import android.accounts.Account;
import android.content.Context;
import javax.annotation.Nonnull;
-import javax.annotation.Nullable;
/**
* Utility class for retrieving accounts that may be used for login.
*/
public class LoginAccountUtils {
+ /**
+ * This defines the type of account this class deals with.
+ * This account type is used when listing the accounts available on the device for login.
+ */
+ public static final String ACCOUNT_TYPE = "";
+
private LoginAccountUtils() {
// This utility class is not publicly instantiable.
}
@@ -39,9 +43,4 @@ public class LoginAccountUtils {
public static String[] getAccountsForLogin(final Context context) {
return new String[0];
}
-
- @Nullable
- public static Account getCurrentAccount(final Context context) {
- return null;
- }
}