Immutable data class. var -> val
This commit is contained in:
parent
3435357b1c
commit
7773b75834
|
@ -20,9 +20,8 @@ import org.matrix.android.sdk.api.session.crypto.model.EncryptedFileInfo
|
|||
|
||||
/**
|
||||
* Define the result of an encryption file
|
||||
* TODO var should be val
|
||||
*/
|
||||
internal data class EncryptionResult(
|
||||
var encryptedFileInfo: EncryptedFileInfo,
|
||||
var encryptedByteArray: ByteArray
|
||||
val encryptedFileInfo: EncryptedFileInfo,
|
||||
val encryptedByteArray: ByteArray
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue