Skip to content

Commit

Permalink
removed System.out.println that accidentally slipped in (#2013)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikuB committed Jun 1, 2023
1 parent 1b7d27f commit 553d5fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions flutter_local_notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# [14.1.1]

* Fixed typo in API docs for the deprecated `showDailyAtTime()` method. Thanks to the PR from [Yuichiro Kawano](https://github.com/yu1ro)
* [Android] removed a call to standard output via `System.out.println()`

# [14.1.0]

* [Android] added `alarmClock` as one of the `AndroidScheduleMode` options. This is useful for cases where a notification functions as an alarm and *may* show an alarm icon on the status bar depending on the device Thanks to the PR from [Muhammed Ballan](https://github.com/iballan)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,6 @@ public boolean onRequestPermissionsResult(

@Override
public boolean onNewIntent(Intent intent) {
System.out.println("mbui: onNewIntent");
boolean res = sendNotificationPayloadMessage(intent);
if (res && mainActivity != null) {
mainActivity.setIntent(intent);
Expand Down
2 changes: 1 addition & 1 deletion flutter_local_notifications/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_local_notifications
description: A cross platform plugin for displaying and scheduling local
notifications for Flutter applications with the ability to customise for each
platform.
version: 14.1.0
version: 14.1.1
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues

Expand Down

0 comments on commit 553d5fb

Please sign in to comment.