Code quality: trim()
This commit is contained in:
parent
dcd64de4b8
commit
66a018c79e
|
@ -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)) {
|
||||||
|
|
Loading…
Reference in New Issue