public override fun clone()

in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/model/TestData.kt [124:132]


    public override fun clone(): TestData {
        try {
            val data = super.clone() as TestData
            data.envVars = envVars
            return data
        } catch (e: CloneNotSupportedException) {
            throw RuntimeException(e)
        }
    }