KT-1378 Code formatting: spaces around ':'
Changed test data to match actual behavior of the "override methods" feature.
This commit is contained in:
@@ -11,10 +11,10 @@ class SomeOther<S> : Some<S> {
|
||||
override fun someFoo() {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
override fun someGenericFoo(): S {
|
||||
override fun someGenericFoo() : S {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
override fun someOtherFoo(): Int {
|
||||
override fun someOtherFoo() : Int {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user