Merge "Fix build break due to additional arg in Bitmap ctor"

This commit is contained in:
Patrick Dubroy
2010-12-14 17:57:00 -08:00
committed by Android (Google) Code Review

View File

@@ -364,6 +364,6 @@ public class Bitmap_Delegate {
int nativeInt = sManager.addDelegate(delegate);
// and create/return a new Bitmap with it
return new Bitmap(nativeInt, isMutable, null /*ninePatchChunk*/, density);
return new Bitmap(nativeInt, null /* buffer */, isMutable, null /*ninePatchChunk*/, density);
}
}