override fun equals()

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


    override fun equals(other: Any?): Boolean {
        if (other !is TestVMSettings) return false
        return Objects.equals(allowSecurityManager, other.allowSecurityManager) &&
                Objects.equals(javaOptions, other.javaOptions) &&
                Objects.equals(nativeLibPath, other.nativeLibPath) &&
                Objects.equals(envVars, other.envVars) &&
                Objects.equals(classPath, other.classPath) &&
                Objects.equals(useIdeaVMOptions, other.useIdeaVMOptions)
    }