[#216] ktlint 0.44.0

This commit is contained in:
Carter Jernigan 2022-02-19 16:01:37 -05:00 committed by Carter Jernigan
parent c6c59eefe1
commit 469c2ccd37
2 changed files with 10 additions and 10 deletions

View File

@ -66,7 +66,7 @@ ANDROID_GRADLE_PLUGIN_VERSION=7.1.1
DETEKT_VERSION=1.19.0
FULLADLE_VERSION_MATCHER=0.17.3
GRADLE_VERSIONS_PLUGIN_VERSION=0.39.0
KTLINT_VERSION=0.43.1
KTLINT_VERSION=0.44.0
JGIT_VERSION=5.12.0.202106070339-r
PLAY_PUBLISHER_PLUGIN_VERSION_MATCHER=3.7.0

View File

@ -158,8 +158,8 @@ class MainActivity : ComponentActivity() {
onCopyToClipboard = {
copyToClipboard(applicationContext, persistableWallet)
}, onComplete = {
walletViewModel.persistBackupComplete()
}
walletViewModel.persistBackupComplete()
}
)
}
@ -341,14 +341,14 @@ class MainActivity : ComponentActivity() {
onRescanWallet = {
walletViewModel.rescanBlockchain()
}, onWipeWallet = {
walletViewModel.wipeWallet()
walletViewModel.wipeWallet()
// If wipe ever becomes an operation to also delete the seed, then we'll also need
// to do the following to clear any retained state from onboarding (only happens if
// occurring during same session as onboarding)
// onboardingViewModel.onboardingState.goToBeginning()
// onboardingViewModel.isImporting.value = false
}
// If wipe ever becomes an operation to also delete the seed, then we'll also need
// to do the following to clear any retained state from onboarding (only happens if
// occurring during same session as onboarding)
// onboardingViewModel.onboardingState.goToBeginning()
// onboardingViewModel.isImporting.value = false
}
)
}
}