Can be private: simplification

Related to KT-22030
This commit is contained in:
Mikhail Glukhikh
2018-06-06 15:16:44 +03:00
parent 7786896e9b
commit 88974ee32b
4 changed files with 23 additions and 7 deletions
@@ -0,0 +1,7 @@
open class A {
<caret>internal fun foo() {}
fun bar(a: A) {
a.foo()
}
}
@@ -0,0 +1,7 @@
open class A {
private fun foo() {}
fun bar(a: A) {
a.foo()
}
}