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

Commit bea98dc2 authored by Narayan Kamath's avatar Narayan Kamath Committed by Gerrit Code Review
Browse files

Merge "Fix inconsistency in LoggingPrintStream."

parents 3254260b b0c7c914
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -293,7 +293,7 @@ abstract class LoggingPrintStream extends PrintStream {

    @Override
    public synchronized void println(String s) {
        if (builder.length() == 0) {
        if (builder.length() == 0 && s != null) {
            // Optimization for a simple println.
            int length = s.length();