#1351 reformated code again and lint fixes

This commit is contained in:
gouri-panda 2020-11-11 15:47:04 +05:30
parent 2bf42114c7
commit bd8657eca2
2 changed files with 7 additions and 5 deletions

View File

@ -12,7 +12,7 @@
<ID>MagicNumber:ZimManageViewModel.kt$ZimManageViewModel$5</ID>
<ID>MagicNumber:ZimManageViewModel.kt$ZimManageViewModel$500</ID>
<ID>MagicNumber:ZimManageViewModel.kt$ZimManageViewModel$60</ID>
<ID>NestedBlockDepth:PeerGroupHandshake.kt$PeerGroupHandshake$exchangeFileTransferMetadata</ID>
<ID>NestedBlockDepth:ReceiverHandShake.kt$ReceiverHandShake$exchangeFileTransferMetadata</ID>
<ID>PackageNaming:AvailableSpaceCalculator.kt$package org.kiwix.kiwixmobile.zim_manager.library_view</ID>
<ID>PackageNaming:ConnectivityBroadcastReceiver.kt$package org.kiwix.kiwixmobile.zim_manager</ID>
<ID>PackageNaming:DefaultLanguageProvider.kt$package org.kiwix.kiwixmobile.zim_manager</ID>
@ -38,8 +38,9 @@
<ID>PackageNaming:ZimManageViewModel.kt$package org.kiwix.kiwixmobile.zim_manager</ID>
<ID>ReturnCount:Fat32Checker.kt$Fat32Checker$private fun canCreate4GbFile(storage: String): Boolean</ID>
<ID>TooGenericExceptionCaught:FileWritingFileSystemChecker.kt$FileWritingFileSystemChecker$e: Exception</ID>
<ID>TooGenericExceptionCaught:PeerGroupHandshake.kt$PeerGroupHandshake$e: Exception</ID>
<ID>TooGenericExceptionCaught:PeerGroupHandshake.kt$PeerGroupHandshake$ex: Exception</ID>
<ID>TooGenericExceptionCaught:ReceiverHandShake.kt$ReceiverHandShake$e: Exception</ID>
<ID>TooGenericExceptionCaught:SenderHandShake.kt$SenderHandShake$e: Exception</ID>
<ID>TooGenericExceptionThrown:ActivityExtensions.kt$throw RuntimeException( """ applicationContext is ${applicationContext::class.java.simpleName} application is ${application::class.java.simpleName} """.trimIndent() )</ID>
<ID>TooGenericExceptionThrown:LibraryViewHolder.kt$LibraryViewHolder.LibraryBookViewHolder$throw RuntimeException("impossible invalid state: ${item.fileSystemState}")</ID>
<ID>TooGenericExceptionThrown:ZimManageViewModel.kt$ZimManageViewModel$throw RuntimeException("Impossible state")</ID>

View File

@ -240,11 +240,12 @@ class WifiDirectManager @Inject constructor(
}
var inetAddress: InetAddress?
lifecycleCoroutineScope.launch {
inetAddress = if (isFileSender) {
SenderHandShake(this@WifiDirectManager).handshake()
val peerGroupHandshake = if (isFileSender) {
SenderHandShake(this@WifiDirectManager)
} else {
ReceiverHandShake(this@WifiDirectManager).handshake()
ReceiverHandShake(this@WifiDirectManager)
}
inetAddress = peerGroupHandshake.handshake()
if (inetAddress != null) {
setClientAddress(inetAddress!!)
} else {