module ActiveLdap::Operations::LDIF::ModifyRecordLoadable::ReplaceOperationModifiable
def to_modify_entries
def to_modify_entries return [[:replace, full_attribute_name, []]] if attributes.empty? attributes.collect do |key, value| [:replace, key, value] end end