J2K: adapted for default visibility modifier 'public'

This commit is contained in:
Valentin Kipyatkov
2015-09-15 11:29:27 +03:00
parent 1ccbda6af4
commit c3ddd5d32b
477 changed files with 1359 additions and 1350 deletions
+4 -4
View File
@@ -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")