J2K: adapted for default visibility modifier 'public'

This commit is contained in:
Valentin Kipyatkov
2015-09-15 11:29:27 +03:00
parent 1ccbda6af4
commit c3ddd5d32b
477 changed files with 1359 additions and 1350 deletions
@@ -2,8 +2,8 @@
// !specifyLocalVariableTypeByDefault: true
import java.util.HashSet
class Foo {
fun foo(o: HashSet<Any?>?) {
internal class Foo {
internal fun foo(o: HashSet<Any?>?) {
val o2: HashSet<Any?>? = o
var foo: Int = 0
foo = o2!!.size()
@@ -1,7 +1,7 @@
import java.util.HashSet
class Foo {
fun foo(o: HashSet<Any>) {
internal class Foo {
internal fun foo(o: HashSet<Any>) {
val o2 = o
var foo = 0
foo = o2.size()