From 0fef44de68c022a35aa34b6f36f8a183c827c684 Mon Sep 17 00:00:00 2001 From: Chris Wren Date: Tue, 30 Sep 2014 13:05:14 -0400 Subject: [PATCH] Add a returns clause to the matchesInterruptionFilter javadoc. Bug: 17641219 Change-Id: I4f1949902bf872823389f3db8e694e370e113295 --- .../service/notification/NotificationListenerService.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/java/android/service/notification/NotificationListenerService.java b/core/java/android/service/notification/NotificationListenerService.java index 35fff7407a214..5d6acd8244714 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;