J2K: adapted for default visibility modifier 'public'
This commit is contained in:
+4
-4
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
public class Short(s: String) {
|
||||
class Short(s: String) {
|
||||
companion object {
|
||||
public fun valueOf(value: String): Short {
|
||||
fun valueOf(value: String): Short {
|
||||
return Short(value)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
object Test {
|
||||
public fun test() {
|
||||
internal object Test {
|
||||
fun test() {
|
||||
test.Short.valueOf("1")
|
||||
test.Short.valueOf("1")
|
||||
java.lang.Short.valueOf("1")
|
||||
|
||||
Reference in New Issue
Block a user