From 4f1bf20ba5d5709196b01d4ec30fb1f5430256e8 Mon Sep 17 00:00:00 2001 From: Julia Tuttle Date: Mon, 6 May 2019 13:40:05 -0400 Subject: [PATCH] Fix typo. Bug: 130427148 Test: just renaming a variable, still compiles Change-Id: I6a3f6a8abebf0ccde53705e5b82fd11fa2f7bd51 --- core/java/android/app/Notification.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index a869d85f73223..83975831d8e54 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -8810,8 +8810,8 @@ public class Notification implements Parcelable * and the notification is no longer relevant.

*/ @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; }