-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0.0-M29
-
Fix Version/s: 1.0.0-M30
-
Labels:None
The LdifReader class lowercases the AtributeType during the parsing :
public static Attribute parseAttributeValue( String line ) { int colonIndex = line.indexOf( ':' ); if ( colonIndex != -1 ) { String attributeType = Strings.toLowerCase( line ).substring( 0, colonIndex );
We then lose the original user provided AttributeType, which is not expected
- is duplicated by
-
DIRAPI-228 LdifReader lowercases all attribute types
-
- Closed
-