From d560e898a3628ce92704529302b340fb1aa64590 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 8 Jul 2025 12:41:45 +0200 Subject: [PATCH] Fix quality issue. --- .../rageshake/impl/reporter/BugReporterMultipartBody.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/features/rageshake/impl/src/main/kotlin/io/element/android/features/rageshake/impl/reporter/BugReporterMultipartBody.kt b/features/rageshake/impl/src/main/kotlin/io/element/android/features/rageshake/impl/reporter/BugReporterMultipartBody.kt index 29a8e4bb27..0fe0bfdc86 100755 --- a/features/rageshake/impl/src/main/kotlin/io/element/android/features/rageshake/impl/reporter/BugReporterMultipartBody.kt +++ b/features/rageshake/impl/src/main/kotlin/io/element/android/features/rageshake/impl/reporter/BugReporterMultipartBody.kt @@ -28,9 +28,7 @@ import java.util.UUID /** * Copy of [okhttp3.MultipartBody] with addition of a listener to track progress (Last imported from OkHttp 5.0.0). * Patches are surrounded by ELEMENT-START and ELEMENT-END - */ - -/** + * * An [RFC 2387][rfc_2387]-compliant request body. * * [rfc_2387]: http://www.ietf.org/rfc/rfc2387.txt @@ -294,6 +292,7 @@ class BugReporterMultipartBody internal constructor( // Element: use FORM as default type private var type = FORM // ELEMENT-END + private val parts = mutableListOf() /**