Skip to content

Commit

Permalink
Remove super.onReceive from our 3 widgets.
Browse files Browse the repository at this point in the history
  • Loading branch information
PavlosTze committed Feb 17, 2025
1 parent f3129b9 commit d9dca8e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ class CurrentWeatherWidget : AppWidgetProvider(), KoinComponent {
*/
@Suppress("MagicNumber")
override fun onReceive(context: Context, intent: Intent?) {
super.onReceive(context, intent)

// These variables are useful for identifying what type of update to do
val extras = intent?.extras
val appWidgetId =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ class CurrentWeatherWidgetDetailed : AppWidgetProvider(), KoinComponent {
*/
@Suppress("MagicNumber")
override fun onReceive(context: Context, intent: Intent?) {
super.onReceive(context, intent)

// These variables are useful for identifying what type of update to do
val extras = intent?.extras
val appWidgetId =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ class CurrentWeatherWidgetTile : AppWidgetProvider(), KoinComponent {

@Suppress("MagicNumber")
override fun onReceive(context: Context, intent: Intent?) {
super.onReceive(context, intent)

// These variables are useful for identifying what type of update to do
val extras = intent?.extras
val appWidgetId =
Expand Down

0 comments on commit d9dca8e

Please sign in to comment.