don't use semicolon in kotlin

This commit is contained in:
Jannik 2019-06-17 22:40:52 +02:00
parent f026a0dcf7
commit 3cf401f3a1
Signed by: Seil0
GPG Key ID: E8459F3723C52C24
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class Connection(val address: InetAddress, val port: Int = 10796) : Closeable {
is ErrorPackage -> throw ConnectionErrorException(pkg)
else -> throw RuntimeException("Unreachable")
}
};
}
}
@Throws(IOException::class, ConnectionException::class)

View File

@ -62,7 +62,7 @@ class ImportViewController : Controller() {
reset()
}
fun reset() {
private fun reset() {
iv.tfFilePath.clear()
iv.tfName.clear()
iv.cvTags.chips.clear()