You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2022/09/02 15:03:42 UTC

[directory-ldap-api] branch master updated: made the DnNode.setElement() method public

This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-ldap-api.git


The following commit(s) were added to refs/heads/master by this push:
     new 7882eaedb made the DnNode.setElement() method public
7882eaedb is described below

commit 7882eaedba9bb5c82411f9e6a13d2334d42c470a
Author: emmanuel lecharny <el...@apache.org>
AuthorDate: Fri Sep 2 17:02:58 2022 +0200

    made the DnNode.setElement() method public
---
 .../src/main/java/org/apache/directory/api/ldap/util/tree/DnNode.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ldap/extras/util/src/main/java/org/apache/directory/api/ldap/util/tree/DnNode.java b/ldap/extras/util/src/main/java/org/apache/directory/api/ldap/util/tree/DnNode.java
index e7c2a13bd..b1c2ff7bc 100644
--- a/ldap/extras/util/src/main/java/org/apache/directory/api/ldap/util/tree/DnNode.java
+++ b/ldap/extras/util/src/main/java/org/apache/directory/api/ldap/util/tree/DnNode.java
@@ -211,7 +211,7 @@ public class DnNode<N>
      * 
      * @param element The element to set
      */
-    private synchronized void setElement( N element )
+    public synchronized void setElement( N element )
     {
         this.nodeElement = element;
     }