Skip to content

Commit 23c2682

Browse files
author
Maxime NATUREL
committed
Fixing code style issues
1 parent 88f7439 commit 23c2682

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vector/src/main/java/im/vector/app/features/settings/devices/v2/overview/SessionOverviewFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ class SessionOverviewFragment :
294294
}
295295

296296
private fun showLearnMoreInfoVerificationStatus(roomEncryptionTrustLevel: RoomEncryptionTrustLevel?) {
297-
val args = when(roomEncryptionTrustLevel) {
297+
val args = when (roomEncryptionTrustLevel) {
298298
null -> {
299299
// encryption not supported
300300
SessionLearnMoreBottomSheet.Args(

vector/src/main/java/im/vector/app/features/settings/devices/v2/verification/GetEncryptionTrustLevelForDeviceUseCase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class GetEncryptionTrustLevelForDeviceUseCase @Inject constructor(
2626
) {
2727

2828
fun execute(currentSessionCrossSigningInfo: CurrentSessionCrossSigningInfo, cryptoDeviceInfo: CryptoDeviceInfo?): RoomEncryptionTrustLevel? {
29-
if(cryptoDeviceInfo == null) {
29+
if (cryptoDeviceInfo == null) {
3030
return null
3131
}
3232

0 commit comments

Comments
 (0)