if ( !newValues.contains( oldValue.getStringValue() ) && !oldValue.isEmpty() )
{
LdifModSpec modSpec = LdifModSpec.createDelete( oldAttrDesc );
if ( oldAttr.isBinary() )
{
modSpec.addAttrVal( LdifAttrValLine.create( oldAttrDesc, oldValue.getBinaryValue() ) );
}
else
{
modSpec.addAttrVal( LdifAttrValLine.create( oldAttrDesc, oldValue.getStringValue() ) );
}