Skip to content

Commit 861f9ff

Browse files
committed
renaming a variable
1 parent 07b75a5 commit 861f9ff

File tree

1 file changed

+3
-3
lines changed
  • app/src/main/kotlin/com/simplemobiletools/filemanager/helpers

1 file changed

+3
-3
lines changed

app/src/main/kotlin/com/simplemobiletools/filemanager/helpers/RootHelpers.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ class RootHelpers {
103103

104104
override fun commandCompleted(id: Int, exitcode: Int) {
105105
files.forEachIndexed { index, fileDirItem ->
106-
val childrenCount = lines[index]
107-
if (childrenCount.areDigitsOnly()) {
108-
fileDirItem.size = childrenCount.toLong()
106+
val size = lines[index]
107+
if (size.areDigitsOnly()) {
108+
fileDirItem.size = size.toLong()
109109
}
110110
}
111111
callback(path, files)

0 commit comments

Comments
 (0)