summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2018-08-29 16:00:19 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-08-29 16:00:19 +0000
commit3c0fd767259a6a64e33a58535211d4bf6e128358 (patch)
tree3e73604e5169aab62e50a5b445895acf702ab94c /core/java
parent54b9892f3cc8ed30bfe660ff2957aefeb484b092 (diff)
parent2fe035b449765da5c2b27848daa89d4dfbf43e71 (diff)
Merge "Revert "Fixed FieldClassificationStrategy that gets data from the package info.""
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/service/autofill/AutofillFieldClassificationService.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/core/java/android/service/autofill/AutofillFieldClassificationService.java b/core/java/android/service/autofill/AutofillFieldClassificationService.java
index e5e1c926fbcd..1cd76d2e9ec9 100644
--- a/core/java/android/service/autofill/AutofillFieldClassificationService.java
+++ b/core/java/android/service/autofill/AutofillFieldClassificationService.java
@@ -65,36 +65,16 @@ public abstract class AutofillFieldClassificationService extends Service {
/**
* Manifest metadata key for the resource string containing the name of the default field
* classification algorithm.
- *
- * @deprecated Use {@link #RESOURCE_DEFAULT_ALGORITHM} instead.
*/
- @Deprecated
public static final String SERVICE_META_DATA_KEY_DEFAULT_ALGORITHM =
"android.autofill.field_classification.default_algorithm";
-
/**
* Manifest metadata key for the resource string array containing the names of all field
* classification algorithms provided by the service.
- *
- * @deprecated Use {@link #RESOURCE_AVAILABLE_ALGORITHMS} instead.
*/
- @Deprecated
public static final String SERVICE_META_DATA_KEY_AVAILABLE_ALGORITHMS =
"android.autofill.field_classification.available_algorithms";
- /**
- * Name of the resource string containing the name of the default field
- * classification algorithm.
- */
- public static final String RESOURCE_DEFAULT_ALGORITHM =
- "autofill_field_classification_default_algorithm";
-
- /**
- * Name of the resource string array containing the names of all field
- * classification algorithms provided by the service.
- */
- public static final String RESOURCE_AVAILABLE_ALGORITHMS =
- "autofill_field_classification_available_algorithms";
/** {@hide} **/
public static final String EXTRA_SCORES = "scores";