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

Commit c602c577 authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 48c7e6f3: am 24ff6823: Merge "prevent unnecessary warning logs caused by View.toString()"

* commit '48c7e6f3':
  prevent unnecessary warning logs caused by View.toString()
parents 9546d5a2 48c7e6f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4594,7 +4594,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
            out.append(" #");
            out.append(Integer.toHexString(id));
            final Resources r = mResources;
            if (Resources.resourceHasPackage(id) && r != null) {
            if (id > 0 && Resources.resourceHasPackage(id) && r != null) {
                try {
                    String pkgname;
                    switch (id&0xff000000) {