diff options
| -rw-r--r-- | core/java/android/service/notification/NotificationListenerService.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/service/notification/NotificationListenerService.java b/core/java/android/service/notification/NotificationListenerService.java index 35fff7407a21..5d6acd824471 100644 --- a/core/java/android/service/notification/NotificationListenerService.java +++ b/core/java/android/service/notification/NotificationListenerService.java @@ -760,6 +760,9 @@ public abstract class NotificationListenerService extends Service { /** * Returns whether the notification matches the user's interruption * filter. + * + * @return {@code true} if the notification is allowed by the filter, or + * {@code false} if it is blocked. */ public boolean matchesInterruptionFilter() { return mMatchesInterruptionFilter; |