Make getManager private on AlarmModule

It was never used publicly.
This commit is contained in:
Brandon Presley 2022-12-02 14:47:54 +13:00
parent 284983c1cf
commit c2994da041
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ class AlarmModule constructor(context: ReactApplicationContext?) :
}
@RequiresApi(Build.VERSION_CODES.O)
fun getManager(): NotificationManager {
private fun getManager(): NotificationManager {
val alarmsChannel = NotificationChannel(
CHANNEL_ID_DONE, CHANNEL_ID_DONE, NotificationManager.IMPORTANCE_HIGH
)