Converter:
Classes are final by default in plugin mode
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
public open class Test(str : String) {
|
||||
public class Test(str : String) {
|
||||
var myStr : String = "String2"
|
||||
public open fun sout(str : String) {
|
||||
System.out.println(str)
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
open class Foo() {
|
||||
class Foo() {
|
||||
open fun execute() {
|
||||
}
|
||||
}
|
||||
open class Bar() {
|
||||
class Bar() {
|
||||
var fooNotNull : Foo = Foo()
|
||||
var fooNullable : Foo = null
|
||||
}
|
||||
open class Test() {
|
||||
class Test() {
|
||||
public open fun test(barNotNull : Bar, barNullable : Bar) {
|
||||
barNotNull.fooNotNull.execute()
|
||||
barNotNull.fooNullable.execute()
|
||||
|
||||
Reference in New Issue
Block a user