J2K: adapted for default visibility modifier 'public'
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user