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

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

Merge "Increase initial StringBuffer capacity in View.toString."

parents c6644951 db28ed58
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6432,7 +6432,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
    @Override
    public String toString() {
        StringBuilder out = new StringBuilder(128);
        StringBuilder out = new StringBuilder(256);
        out.append(getClass().getName());
        out.append('{');
        out.append(Integer.toHexString(System.identityHashCode(this)));