aboutsummaryrefslogtreecommitdiff
path: root/input/autofill
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2017-11-03 04:58:25 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-11-03 04:58:25 +0000
commitf2efd38c0e6abd8981c93e2c39f78cd042c745da (patch)
tree4c19ccf48b81f717a69fec866827288baff522c6 /input/autofill
parentc5cb6a5acdfdb9b9ccb6e03fa78940fb954ad140 (diff)
parentfbcc07e7afef80a580a2e409989ce86aeaa21654 (diff)
downloadandroid-f2efd38c0e6abd8981c93e2c39f78cd042c745da.tar.gz
Merge "Remove empty call to super.onAutofillEvent()." into oc-dev
Diffstat (limited to 'input/autofill')
-rw-r--r--input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/StandardAutoCompleteSignInActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/StandardAutoCompleteSignInActivity.java b/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/StandardAutoCompleteSignInActivity.java
index 6ecb5b0b..49acd377 100644
--- a/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/StandardAutoCompleteSignInActivity.java
+++ b/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/StandardAutoCompleteSignInActivity.java
@@ -18,6 +18,7 @@ package com.example.android.autofill.app;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
+import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
@@ -116,8 +117,7 @@ public class StandardAutoCompleteSignInActivity extends AppCompatActivity {
private class MyAutofillCallback extends AutofillManager.AutofillCallback {
@Override
- public void onAutofillEvent(View view, int event) {
- super.onAutofillEvent(view, event);
+ public void onAutofillEvent(@NonNull View view, int event) {
if (view instanceof AutoCompleteTextView) {
switch (event) {
case AutofillManager.AutofillCallback.EVENT_INPUT_UNAVAILABLE: