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

Jean-Noel Rouvignac
21.39.2014 6771bc57f190a8275922290077de1f6d6b374a6f
opendj-config/src/main/java/org/forgerock/opendj/config/client/spi/Driver.java
@@ -87,7 +87,7 @@
         * Any exception that occurred whilst retrieving inherited default
         * values.
         */
        private PropertyException exception = null;
        private PropertyException exception;
        /** The path of the managed object containing the first property. */
        private final ManagedObjectPath<?, ?> firstPath;
@@ -96,10 +96,10 @@
        private final boolean isCreate;
        /** The path of the managed object containing the next property. */
        private ManagedObjectPath<?, ?> nextPath = null;
        private ManagedObjectPath<?, ?> nextPath;
        /** The next property whose default values were required. */
        private PropertyDefinition<T> nextProperty = null;
        private PropertyDefinition<T> nextProperty;
        /** Private constructor. */
        private DefaultValueFinder(ManagedObjectPath<?, ?> p, boolean isCreate) {