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

Commit 59c8bce6 authored by Patrick Dubroy's avatar Patrick Dubroy Committed by Android (Google) Code Review
Browse files

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

parents ad0b61ca 22ff4ef0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
    }
}