Code cleanup: removed redundant semicolons

This commit is contained in:
Valentin Kipyatkov
2016-04-26 23:30:42 +03:00
parent e1d8c72aa7
commit b551886889
141 changed files with 2520 additions and 239 deletions
+1 -1
View File
@@ -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 {