From 6d682fcda550af5b68c30330015edfe433d929f9 Mon Sep 17 00:00:00 2001 From: Uladzislau Date: Thu, 18 Jan 2024 14:57:47 +0100 Subject: [PATCH] Small cosmetics Signed-off-by: Uladzislau --- .../org/zowe/explorer/config/connect/ConnectionConfig.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/org/zowe/explorer/config/connect/ConnectionConfig.kt b/src/main/kotlin/org/zowe/explorer/config/connect/ConnectionConfig.kt index face591aa..24a1a1ba9 100755 --- a/src/main/kotlin/org/zowe/explorer/config/connect/ConnectionConfig.kt +++ b/src/main/kotlin/org/zowe/explorer/config/connect/ConnectionConfig.kt @@ -66,9 +66,8 @@ class ConnectionConfig : ConnectionConfigBase { if (url != other.url) return false if (isAllowSelfSigned != other.isAllowSelfSigned) return false if (zoweConfigPath != other.zoweConfigPath) return false - // TODO: uncomment next 2 lines when the task https://jira.ibagroup.eu/browse/IJMP-1412 will be completed. - if (zVersion != other.zVersion) return false - if (owner != other.owner) return false + if (zVersion != other.zVersion) return false + if (owner != other.owner) return false return true }