override fun clone()

in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/model/TestVMSettings.kt [58:67]


    override fun clone(): Any {
        try {
            val settings = super.clone() as TestVMSettings
            settings.envVars = envVars
            settings.classPath = classPath
            return settings
        } catch (e: CloneNotSupportedException) {
            throw RuntimeException(e)
        }
    }