Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e62d35ae authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Catch exception on dump() when callign ExtService."

parents 3b8bab0c 07a34ff5
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -282,9 +282,13 @@ final class FieldClassificationStrategy {
        }
        pw.println(impl.flattenToShortString());

        try {
            pw.print(prefix); pw.print("Available algorithms: ");
            pw.println(Arrays.toString(getAvailableAlgorithms()));
            pw.print(prefix); pw.print("Default algorithm: "); pw.println(getDefaultAlgorithm());
        } catch (Exception e) {
            pw.print("ERROR CALLING SERVICE: " ); pw.println(e);
        }
    }

    private static interface Command {