Skip to content

Commit

Permalink
Remove super.onReceive from our 3 widgets. (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
PavlosTze authored Feb 21, 2025
1 parent c8589f4 commit 91f8444
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 91f8444

Please sign in to comment.