From 6771bc57f190a8275922290077de1f6d6b374a6f Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 21 Oct 2014 14:39:14 +0000
Subject: [PATCH] Autorefactored removing default values for field initializers
---
opendj-config/src/main/java/org/forgerock/opendj/config/client/spi/Driver.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-config/src/main/java/org/forgerock/opendj/config/client/spi/Driver.java b/opendj-config/src/main/java/org/forgerock/opendj/config/client/spi/Driver.java
index dc37177..1a95394 100644
--- a/opendj-config/src/main/java/org/forgerock/opendj/config/client/spi/Driver.java
+++ b/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) {
--
Gitblit v1.10.0