Cleanup kotlin sources

1. remove unused import
2. remove redundant semicolon
3. remove redundant empty constructor and SAM-constructor
4. remove unnecessary type argument
5. adjust indent

See gh-31913
This commit is contained in:
Yanming Zhou
2023-12-28 10:41:06 +08:00
committed by Stéphane Nicoll
parent 28a7b6103a
commit 7474af4f09
10 changed files with 57 additions and 59 deletions

View File

@@ -94,12 +94,12 @@ class AspectJAutoProxyInterceptorKotlinIntegrationTests(
open class Echo {
open fun echo(value: String): String {
return value;
return value
}
open suspend fun suspendingEcho(value: String): String {
delay(1)
return value;
return value
}
}