Code cleanup: removed redundant semicolons
This commit is contained in:
@@ -38,7 +38,7 @@ open class MemberDescription protected constructor(
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
var result = 13;
|
||||
var result = 13
|
||||
result = result * 23 + ownerInternalName.hashCode()
|
||||
result = result * 23 + name.hashCode()
|
||||
result = result * 23 + desc.hashCode()
|
||||
|
||||
@@ -353,7 +353,7 @@ fun MethodDescription.matches(ctor: Constructor<*>): Boolean {
|
||||
if (!p.matches(methodParams[i])) return false
|
||||
}
|
||||
|
||||
return true;
|
||||
return true
|
||||
}
|
||||
|
||||
fun MethodDescription.matches(method: Method): Boolean {
|
||||
|
||||
Reference in New Issue
Block a user