Code quality: trim()

This commit is contained in:
Benoit Marty 2019-07-09 15:11:20 +02:00
parent dcd64de4b8
commit 66a018c79e
1 changed files with 3 additions and 3 deletions

View File

@ -229,7 +229,7 @@ object MXMegolmExportEncryption {
throw Exception("Header line not found") throw Exception("Header line not found")
} }


val line = fileStr.substring(lineStart, lineEnd).trim { it <= ' ' } val line = fileStr.substring(lineStart, lineEnd).trim()


// start the next line after the newline // start the next line after the newline
lineStart = lineEnd + 1 lineStart = lineEnd + 1
@ -247,9 +247,9 @@ object MXMegolmExportEncryption {
val line: String val line: String


if (lineEnd < 0) { if (lineEnd < 0) {
line = fileStr.substring(lineStart).trim { it <= ' ' } line = fileStr.substring(lineStart).trim()
} else { } else {
line = fileStr.substring(lineStart, lineEnd).trim { it <= ' ' } line = fileStr.substring(lineStart, lineEnd).trim()
} }


if (TextUtils.equals(line, TRAILER_LINE)) { if (TextUtils.equals(line, TRAILER_LINE)) {