style: reformat code

Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
oSumAtrIX 2022-04-13 02:47:53 +02:00
parent 7d38bb0baa
commit 8daf877fac
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4
2 changed files with 10 additions and 6 deletions

View file

@ -21,9 +21,10 @@ data class SignatureResolverResult(
* Please note, this method creates a [ClassProxy].
* Use [immutableMethod] where possible.
*/
val method get() = definingClassProxy.resolve().methods.first {
it.name == resolvedMethodName
}
val method
get() = definingClassProxy.resolve().methods.first {
it.name == resolvedMethodName
}
/**
* Returns the **immutable** method by the [resolvedMethodName] from the [definingClassProxy].
@ -32,8 +33,8 @@ data class SignatureResolverResult(
*/
val immutableMethod: Method
get() = definingClassProxy.immutableClass.methods.first {
it.name == resolvedMethodName
}
it.name == resolvedMethodName
}
@Suppress("Unused") // TODO(Sculas): remove this when we have coverage for this method.
fun findParentMethod(signature: MethodSignature): SignatureResolverResult? {

View file

@ -79,7 +79,10 @@ internal class SignatureResolver(
}
}
private fun compareParameterTypes(signature: Iterable<String>, original: MutableList<out CharSequence>): Boolean {
private fun compareParameterTypes(
signature: Iterable<String>,
original: MutableList<out CharSequence>
): Boolean {
return signature.count() != original.size || !(signature.all { a -> original.any { it.startsWith(a) } })
}
}