Merge "Fix Nullability annotation"

This commit is contained in:
John Reck
2021-08-17 15:52:35 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 4 deletions

View File

@@ -14982,7 +14982,7 @@ package android.graphics {
method public void drawTextRun(@NonNull android.graphics.text.MeasuredText, int, int, int, int, float, float, boolean, @NonNull android.graphics.Paint);
method public void drawVertices(@NonNull android.graphics.Canvas.VertexMode, int, @NonNull float[], int, @Nullable float[], int, @Nullable int[], int, @Nullable short[], int, int, @NonNull android.graphics.Paint);
method public void enableZ();
method public boolean getClipBounds(@Nullable android.graphics.Rect);
method public boolean getClipBounds(@NonNull android.graphics.Rect);
method @NonNull public final android.graphics.Rect getClipBounds();
method public int getDensity();
method @Nullable public android.graphics.DrawFilter getDrawFilter();

View File

@@ -1272,11 +1272,10 @@ public class Canvas extends BaseCanvas {
* in a way similar to quickReject, in that it tells you that drawing
* outside of these bounds will be clipped out.
*
* @param bounds Return the clip bounds here. If it is null, ignore it but
* still return true if the current clip is non-empty.
* @param bounds Return the clip bounds here.
* @return true if the current clip is non-empty.
*/
public boolean getClipBounds(@Nullable Rect bounds) {
public boolean getClipBounds(@NonNull Rect bounds) {
return nGetClipBounds(mNativeCanvasWrapper, bounds);
}