Fixed method name that was changed in a previous CL.

Bug: 70939974
Test: nope, build is broken, must fix ASAP

Change-Id: I88cf6ccacb5baa097cea26c859b774738bd9b428
This commit is contained in:
Felipe Leme
2018-01-18 15:57:18 -08:00
parent 25be4e0461
commit e30dcb50ec

View File

@@ -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]);
}