From 943ae0d0dc4f982ad869acb43a6438c26813882e Mon Sep 17 00:00:00 2001
From: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date: Mon, 30 Mar 2026 09:03:25 +0000
Subject: [PATCH] Fix compilation error: use getAttributeDescription().getAttributeType() instead of getAttributeType()
---
opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java b/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java
index 53852eb..0413aa9 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/plugins/ReferentialIntegrityPlugin.java
@@ -1016,7 +1016,7 @@
if (modifiedAttribute != null && !modifiedAttribute.isEmpty())
{
// Only enforce referential integrity on attributes that this plugin is configured to manage.
- final AttributeType modifiedAttrType = modifiedAttribute.getAttributeType();
+ final AttributeType modifiedAttrType = modifiedAttribute.getAttributeDescription().getAttributeType();
boolean isManagedAttributeType = false;
if (modifiedAttrType != null && attributeTypes != null)
{
--
Gitblit v1.10.0