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:
committed by
Stéphane Nicoll
parent
28a7b6103a
commit
7474af4f09
@@ -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
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user