Reformatted testData

This commit is contained in:
Simon Ogorodnik
2017-01-10 16:19:37 +03:00
parent 347c6e100b
commit b7a5ff456f
2 changed files with 3 additions and 7 deletions
@@ -1,9 +1,6 @@
class WithModifiersOnAccessors { class WithModifiersOnAccessors {
@Synchronized private fun methSync() { @Synchronized private fun methSync() {}
} @Strictfp protected fun methStrict() {}
@Strictfp protected fun methStrict() {
}
@get:Synchronized @set:Synchronized var sync = 0 @get:Synchronized @set:Synchronized var sync = 0
+1 -2
View File
@@ -1,6 +1,5 @@
import kotlin.collections.Map.Entry import kotlin.collections.Map.Entry
class A { class A {
internal fun foo(o: Entry<Any, Any>) { internal fun foo(o: Entry<Any, Any>) {}
}
} }