Skip to content

Commit

Permalink
Make RDN.getNameValueParis public
Browse files Browse the repository at this point in the history
  • Loading branch information
dirmgr committed May 29, 2019
1 parent 5410fbc commit 34e39aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ <h3>Version 4.0.11</h3>
would have simply used an all-lowercase representation of the provided attribute
name rather than an all-lowercase representation of the primary name. Also
updated the logic used to determine whether an RDN has a specified name or
name-value pair to handle the use of alternate names.
name-value pair to handle the use of alternate names, and exposed the
<tt>RDN.getNameValuePairs</tt> method to make it easier to work with an RDN's
name-value pairs.
<br><br>
</li>

Expand Down
2 changes: 1 addition & 1 deletion src/com/unboundid/ldap/sdk/RDN.java
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ public byte[][] getByteArrayAttributeValues()
*
* @return A sorted set of the name-value pairs that comprise this RDN.
*/
SortedSet<RDNNameValuePair> getNameValuePairs()
public SortedSet<RDNNameValuePair> getNameValuePairs()
{
if (nameValuePairs == null)
{
Expand Down

0 comments on commit 34e39aa

Please sign in to comment.