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

Matthew Swift
13.49.2013 8adb7af006bb6bf8a71f86bb520671de381c8e3e
opendj3/opendj-ldap-sdk/src/main/java/org/forgerock/opendj/ldap/Attributes.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2010 Sun Microsystems, Inc.
 *      Portions copyright 2011-2012 ForgeRock AS.
 *      Portions copyright 2011-2013 ForgeRock AS.
 */
package org.forgerock.opendj.ldap;
@@ -113,8 +113,8 @@
        }
        @Override
        public boolean add(final Object firstValue, final Object... remainingValues) {
            return attribute.add(firstValue, remainingValues);
        public boolean add(final Object... values) {
            return attribute.add(values);
        }
        @Override
@@ -320,7 +320,7 @@
        }
        @Override
        public boolean add(final Object firstValue, final Object... remainingValues) {
        public boolean add(final Object... values) {
            throw new UnsupportedOperationException();
        }