Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/apache/directory-studio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Seelmann <mail@stefan-seelmann.de>2021-01-23 12:10:26 +0300
committerStefan Seelmann <mail@stefan-seelmann.de>2021-01-23 12:10:26 +0300
commit74577d8ea721b26dc9106a2c9ea53059980cd82d (patch)
tree61b97470c0f5002510d0000195f59dd290a8db72 /plugins
parentd3e331cd4c3ea9eebcba22ea3e5f4cfdd92fb37c (diff)
DIRSTUDIO-1135: Fix initialization of AllAttributeValues and SelfValue
Diffstat (limited to 'plugins')
-rw-r--r--plugins/aciitemeditor/src/main/java/org/apache/directory/studio/aciitemeditor/model/ProtectedItemWrapper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/aciitemeditor/src/main/java/org/apache/directory/studio/aciitemeditor/model/ProtectedItemWrapper.java b/plugins/aciitemeditor/src/main/java/org/apache/directory/studio/aciitemeditor/model/ProtectedItemWrapper.java
index 37ea3f26d..4138f28cc 100644
--- a/plugins/aciitemeditor/src/main/java/org/apache/directory/studio/aciitemeditor/model/ProtectedItemWrapper.java
+++ b/plugins/aciitemeditor/src/main/java/org/apache/directory/studio/aciitemeditor/model/ProtectedItemWrapper.java
@@ -220,7 +220,7 @@ public class ProtectedItemWrapper
for ( Iterator<AttributeType> it = aav.iterator(); it.hasNext(); )
{
AttributeType attributeType = it.next();
- values.add( attributeType.toString() );
+ values.add( attributeType.getName() );
}
}
else if ( item instanceof AttributeValueItem )
@@ -240,7 +240,7 @@ public class ProtectedItemWrapper
for ( Iterator<AttributeType> it = sv.iterator(); it.hasNext(); )
{
AttributeType attributeType = it.next();
- values.add( attributeType.toString() );
+ values.add( attributeType.getName() );
}
}
else if ( item instanceof RangeOfValuesItem )