Merge "Remove auto-boxing during the inflate" into mnc-ub-dev

This commit is contained in:
Diego Perez
2015-11-04 14:26:15 +00:00
committed by Android (Google) Code Review
2 changed files with 5 additions and 5 deletions

View File

@@ -409,7 +409,7 @@ public final class BridgeContext extends Context {
pushParser(blockParser); pushParser(blockParser);
return Pair.of( return Pair.of(
mBridgeInflater.inflate(blockParser, parent, attachToRoot), mBridgeInflater.inflate(blockParser, parent, attachToRoot),
true); Boolean.TRUE);
} finally { } finally {
popParser(); popParser();
} }
@@ -447,7 +447,7 @@ public final class BridgeContext extends Context {
pushParser(blockParser); pushParser(blockParser);
return Pair.of( return Pair.of(
mBridgeInflater.inflate(blockParser, parent, attachToRoot), mBridgeInflater.inflate(blockParser, parent, attachToRoot),
false); Boolean.FALSE);
} finally { } finally {
popParser(); popParser();
} }
@@ -470,7 +470,7 @@ public final class BridgeContext extends Context {
resource.getName()), null); resource.getName()), null);
} }
return Pair.of(null, false); return Pair.of(null, Boolean.FALSE);
} }
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")

View File

@@ -117,11 +117,11 @@ abstract class CustomBar extends LinearLayout {
density = iconLoader.getDensity(); density = iconLoader.getDensity();
String path = iconLoader.getPath(); String path = iconLoader.getPath();
// look for a cached bitmap // look for a cached bitmap
Bitmap bitmap = Bridge.getCachedBitmap(path, true /*isFramework*/); Bitmap bitmap = Bridge.getCachedBitmap(path, Boolean.TRUE /*isFramework*/);
if (bitmap == null) { if (bitmap == null) {
try { try {
bitmap = Bitmap_Delegate.createBitmap(stream, false /*isMutable*/, density); bitmap = Bitmap_Delegate.createBitmap(stream, false /*isMutable*/, density);
Bridge.setCachedBitmap(path, bitmap, true /*isFramework*/); Bridge.setCachedBitmap(path, bitmap, Boolean.TRUE /*isFramework*/);
} catch (IOException e) { } catch (IOException e) {
return; return;
} }