From bd8b80653a50e445f59cac7c1e80309dba23712e Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Tue, 04 Aug 2026 08:28:21 +0000
Subject: [PATCH] Fix CodeQL note-severity alerts: dead parameters of private methods (#834)
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/BrowserController.java | 15 ++-------------
1 files changed, 2 insertions(+), 13 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/BrowserController.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/BrowserController.java
index f3c0ab9..3a17b5b 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/BrowserController.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/browser/BrowserController.java
@@ -576,22 +576,11 @@
/** Notify this controller that authentication data have changed in the connection pool. */
@Override
public void notifyAuthDataChanged() {
- notifyAuthDataChanged(null);
- }
-
- /**
- * Notify this controller that authentication data have changed in the
- * connection pool for the specified url.
- * The controller starts refreshing the node which represent entries from the
- * url.
- * @param url the URL of the connection that changed.
- */
- private void notifyAuthDataChanged(LDAPURL url) {
// TODO: temporary implementation
// we should refresh only nodes :
- // - whose URL matches 'url'
+ // - whose URL matches the URL of the connection that changed
// - whose errorType == ERROR_SOLVING_REFERRAL and
- // errorArg == url
+ // errorArg == that URL
startRefreshReferralNodes(rootNode);
}
--
Gitblit v1.10.0