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

Matthew Swift
19.34.2013 eb81bffaf56253ca752c7ab5005eddfc961731b2
opendj-admin/src/main/java/org/opends/server/admin/PropertyDefinition.java
@@ -193,12 +193,7 @@
     */
    protected PropertyDefinition(AbstractManagedObjectDefinition<?, ?> d, Class<T> theClass, String propertyName,
            EnumSet<PropertyOption> options, AdministratorAction adminAction, DefaultBehaviorProvider<T> defaultBehavior) {
        Reject.ifNull(d);
        Reject.ifNull(theClass);
        Reject.ifNull(propertyName);
        Reject.ifNull(options);
        Reject.ifNull(adminAction);
        Reject.ifNull(defaultBehavior);
        Reject.ifNull(d, theClass, propertyName, options, adminAction, defaultBehavior);
        this.definition = d;
        this.theClass = theClass;