From 70e2333b8641f0345ca81efcb3153667e61575b2 Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Tue, 04 Aug 2026 11:50:58 +0000
Subject: [PATCH] Fix CodeQL note-severity alerts: stale @param tags (#842)
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/ServerDescriptor.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/ServerDescriptor.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/ServerDescriptor.java
index e66b6e4..3cc667b 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/ServerDescriptor.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/ServerDescriptor.java
@@ -587,8 +587,8 @@
/**
* Method used to compare attributes defined in the schema.
* Returns whether the two schema attributes are equal.
- * @param schema1 the first schema attribute.
- * @param schema2 the second schema attribute.
+ * @param attr1 the first attribute type.
+ * @param attr2 the second attribute type.
* @return {@code true} if the two schema attributes are equal, {@code false} otherwise.
*/
private static boolean areAttributesEqual(AttributeType attr1, AttributeType attr2)
@@ -616,8 +616,8 @@
/**
* Method used to compare objectclasses defined in the schema.
* Returns whether the two schema objectclasses are equal.
- * @param schema1 the first schema objectclass.
- * @param schema2 the second schema objectclass.
+ * @param oc1 the first objectclass.
+ * @param oc2 the second objectclass.
* @return {@code true} if the two schema objectclasses are equal, {@code false} otherwise.
*/
private static boolean areObjectClassesEqual(ObjectClass oc1, ObjectClass oc2)
--
Gitblit v1.10.0