Can be private: simplification
Related to KT-22030
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
open class A {
|
||||
<caret>internal fun foo() {}
|
||||
|
||||
fun bar(a: A) {
|
||||
a.foo()
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
open class A {
|
||||
private fun foo() {}
|
||||
|
||||
fun bar(a: A) {
|
||||
a.foo()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user