Fix typo.

Bug: 130427148
Test: just renaming a variable, still compiles
Change-Id: I6a3f6a8abebf0ccde53705e5b82fd11fa2f7bd51
This commit is contained in:
Julia Tuttle
2019-05-06 13:40:05 -04:00
parent 772c69bdd3
commit 4f1bf20ba5

View File

@@ -8810,8 +8810,8 @@ public class Notification implements Parcelable
* and the notification is no longer relevant.</p>
*/
@NonNull
public BubbleMetadata.Builder setSuppressNotification(boolean shouldSupressNotif) {
setFlag(FLAG_SUPPRESS_NOTIFICATION, shouldSupressNotif);
public BubbleMetadata.Builder setSuppressNotification(boolean shouldSuppressNotif) {
setFlag(FLAG_SUPPRESS_NOTIFICATION, shouldSuppressNotif);
return this;
}