Commit be60c851 authored by Max Cai's avatar Max Cai Committed by Android Git Automerger

am 77866143: Merge "Revert "Fixed octal printing of bytearrays""

* commit '77866143340f7541180d91fa316071ce947b3a8d':
  Revert "Fixed octal printing of bytearrays"
parents a609653b 2b69e07c
......@@ -249,7 +249,7 @@ public final class MessageNanoPrinter {
} else if (ch >= 32 && ch < 127) {
builder.append((char) ch);
} else {
builder.append(String.format("\\%03o", ch && 0xff));
builder.append(String.format("\\%03o", ch));
}
}
builder.append('"');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment