Skip to content

Commit 73aaf29

Browse files
committed
updating commons + minor code style update
1 parent a57569c commit 73aaf29

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ android {
5858
}
5959

6060
dependencies {
61-
implementation 'com.github.SimpleMobileTools:Simple-Commons:e56c724d04'
61+
implementation 'com.github.SimpleMobileTools:Simple-Commons:16ae1d2c03'
6262
implementation 'com.github.Stericson:RootTools:df729dcb13'
6363
implementation 'com.github.Stericson:RootShell:1.6'
6464
implementation 'com.alexvasilkov:gesture-views:2.5.2'

app/src/main/kotlin/com/simplemobiletools/filemanager/pro/activities/ReadTextActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class ReadTextActivity : SimpleActivity() {
107107
lastSavePromptTS = System.currentTimeMillis()
108108
ConfirmationAdvancedDialog(this, "", R.string.save_before_closing, R.string.save, R.string.discard) {
109109
if (it) {
110-
saveText(shouldExitAfterSaving = true)
110+
saveText(true)
111111
} else {
112112
super.onBackPressed()
113113
}
@@ -178,7 +178,7 @@ class ReadTextActivity : SimpleActivity() {
178178
originalText = currentText
179179
}
180180

181-
if (shouldExitAfterSaving) {
181+
if (shouldExitAfterSaving) {
182182
super.onBackPressed()
183183
}
184184
} else {

0 commit comments

Comments
 (0)