J2K: adapted for default visibility modifier 'public'
This commit is contained in:
+3
-3
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
object PureUtils {
|
||||
public fun foo1(p: Int) {
|
||||
internal object PureUtils {
|
||||
fun foo1(p: Int) {
|
||||
}
|
||||
|
||||
public fun foo2(): Int {
|
||||
fun foo2(): Int {
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
object Utils {
|
||||
public fun foo1(p: Int) {
|
||||
internal object Utils {
|
||||
fun foo1(p: Int) {
|
||||
}
|
||||
|
||||
public fun foo2(): Int {
|
||||
fun foo2(): Int {
|
||||
return 1
|
||||
}
|
||||
|
||||
public val staticField: Int = 1
|
||||
val staticField: Int = 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user