From e30dcb50ec6bd92bbdfc7e1eed4d7ee438e3670f Mon Sep 17 00:00:00 2001 From: Felipe Leme Date: Thu, 18 Jan 2018 15:57:18 -0800 Subject: Fixed method name that was changed in a previous CL. Bug: 70939974 Test: nope, build is broken, must fix ASAP Change-Id: I88cf6ccacb5baa097cea26c859b774738bd9b428 --- .../com/android/server/autofill/AutofillManagerServiceShellCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/autofill/java/com/android/server/autofill/AutofillManagerServiceShellCommand.java b/services/autofill/java/com/android/server/autofill/AutofillManagerServiceShellCommand.java index 24b9fbd59935..44560879f028 100644 --- a/services/autofill/java/com/android/server/autofill/AutofillManagerServiceShellCommand.java +++ b/services/autofill/java/com/android/server/autofill/AutofillManagerServiceShellCommand.java @@ -192,7 +192,7 @@ public final class AutofillManagerServiceShellCommand extends ShellCommand { pw.println("no score"); } else { pw.print("algorithm: "); - pw.print(scores.getAlgorithmName()); + pw.print(scores.getAlgorithm()); pw.print(" score: "); pw.println(scores.getScores()[0][0]); } -- cgit v1.2.3-59-g8ed1b