Skip to content

Commit

Permalink
added comments into the empty methods so detekt is happy
Browse files Browse the repository at this point in the history
  • Loading branch information
kidinov committed Jan 17, 2025
1 parent eabfc03 commit 9688362
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,26 @@ class ApplicationEdgeToEdgeEnabler @Inject constructor() : Application.ActivityL
}

override fun onActivityStarted(activity: Activity) {
// no-op
}

override fun onActivityResumed(activity: Activity) {
// no-op
}

override fun onActivityPaused(activity: Activity) {
// no-op
}

override fun onActivityStopped(activity: Activity) {
// no-op
}

override fun onActivitySaveInstanceState(activity: Activity, bundle: Bundle) {
// no-op
}

override fun onActivityDestroyed(activity: Activity) {
// no-op
}
}

0 comments on commit 9688362

Please sign in to comment.