mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
28.50.2013 0dc1115939d4eda4ad6559d64e2628b86ad29119
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Modification.java
@@ -33,7 +33,6 @@
 */
public final class Modification {
    private final ModificationType modificationType;
    private final Attribute attribute;
    /**
@@ -44,7 +43,8 @@
     * fully immutable:
     *
     * <pre>
     * Modification change = new Modification(modificationType, Types.unmodifiableAttribute(attribute));
     * Modification change = new Modification(modificationType, Attributes
     *         .unmodifiableAttribute(attribute));
     * </pre>
     *
     * @param modificationType
@@ -54,7 +54,6 @@
     */
    public Modification(final ModificationType modificationType, final Attribute attribute) {
        Validator.ensureNotNull(modificationType, attribute);
        this.modificationType = modificationType;
        this.attribute = attribute;
    }