Skip to content

Commit

Permalink
refactor #605 Wrap long line.
Browse files Browse the repository at this point in the history
  • Loading branch information
toastkidjp committed Aug 23, 2022
1 parent 0806cc7 commit 390e815
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/src/main/java/jp/toastkid/yobidashi/main/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ class MainActivity : ComponentActivity() {
override fun onWindowFocusChanged(hasFocus: Boolean) {
super.onWindowFocusChanged(hasFocus)

ClippingUrlOpener()(this) { ViewModelProvider(this).get(BrowserViewModel::class.java).open(it) }
ClippingUrlOpener()(this) {
ViewModelProvider(this).get(BrowserViewModel::class.java).open(it)
}
}

override fun onPause() {
Expand Down

0 comments on commit 390e815

Please sign in to comment.