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

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

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

* commit '24ff6823':
  prevent unnecessary warning logs caused by View.toString()
parents a13980ce 24ff6823
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) {