From 09f31c2c2b91f739fdfb55b81ea50ce8d608f026 Mon Sep 17 00:00:00 2001 From: Yeabkal Wubshit Date: Tue, 30 Aug 2022 07:36:55 +0000 Subject: [PATCH] Fix NotificationChannel#getVibrationPattern API Documentation Missing parenthesis has been added. Change-Id: I094a9b0aa9a60690cc38904810d609a1ce5a0a72 --- core/java/android/app/NotificationChannel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/app/NotificationChannel.java b/core/java/android/app/NotificationChannel.java index b9ad595778e4e..7215987b0d874 100644 --- a/core/java/android/app/NotificationChannel.java +++ b/core/java/android/app/NotificationChannel.java @@ -753,7 +753,7 @@ public final class NotificationChannel implements Parcelable { /** * Returns the vibration pattern for notifications posted to this channel. Will be ignored if - * vibration is not enabled ({@link #shouldVibrate()}. + * vibration is not enabled ({@link #shouldVibrate()}). */ public long[] getVibrationPattern() { return mVibration;