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

Commit 779f0c15 authored by Steve Kondik's avatar Steve Kondik Committed by Gerrit Code Review
Browse files

Merge "Update some commented logging functions" into gingerbread

parents b6ae7bea ac85132c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1761,7 +1761,7 @@ public class Resources {
                } else {
                    synchronized (mTmpValue) {
                        //Log.i(TAG, "Saving cached drawable @ #" +
                        //        Integer.toHexString(key.intValue())
                        //        Long.toHexString(key)
                        //        + " in " + this + ": " + cs);
                        mDrawableCache.put(key, new WeakReference<Drawable.ConstantState>(cs));
                    }
@@ -1779,7 +1779,7 @@ public class Resources {
                Drawable.ConstantState entry = wr.get();
                if (entry != null) {
                    //Log.i(TAG, "Returning cached drawable @ #" +
                    //        Integer.toHexString(((Integer)key).intValue())
                    //        Long.toHexString(key)
                    //        + " in " + this + ": " + entry);
                    return entry.newDrawable(this);
                }
@@ -1863,7 +1863,7 @@ public class Resources {
            } else {
                synchronized (mTmpValue) {
                    //Log.i(TAG, "Saving cached color state list @ #" +
                    //        Integer.toHexString(key.intValue())
                    //        Long.toHexString(key)
                    //        + " in " + this + ": " + csl);
                    mColorStateListCache.put(
                        key, new WeakReference<ColorStateList>(csl));
@@ -1881,7 +1881,7 @@ public class Resources {
                ColorStateList entry = wr.get();
                if (entry != null) {
                    //Log.i(TAG, "Returning cached color state list @ #" +
                    //        Integer.toHexString(((Integer)key).intValue())
                    //        Long.toHexString(key)
                    //        + " in " + this + ": " + entry);
                    return entry;
                }