From 661593f15f14aaf55d73c7979dab1e900ebae2af Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 15 Oct 2014 15:17:11 +0000
Subject: [PATCH] AutoRefactored comments/javadocs on OpenDJ SDK

---
 opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java b/opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
index 9eb6966..6cb2d79 100644
--- a/opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
+++ b/opendj-sdk/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
@@ -142,7 +142,7 @@
                 pd.getName(), pd.getClass().getName()));
     }
 
-    // Create the message.
+    /** Create the message. */
     private static LocalizableMessage createMessage(final PropertyDefinition<?> pd,
             final Object value) {
         final PropertyDefinitionUsageBuilder builder = new PropertyDefinitionUsageBuilder(true);
@@ -150,11 +150,13 @@
                 builder.getUsage(pd));
     }
 
-    // LocalizableMessage that explains the problem.
+    /** LocalizableMessage that explains the problem. */
     private final LocalizableMessage message;
 
-    // The property definition associated with the property that caused
-    // the exception.
+    /**
+     * The property definition associated with the property that caused
+     * the exception.
+     */
     private final PropertyDefinition<?> pd;
 
     private PropertyException(final PropertyDefinition<?> pd, final LocalizableMessage message) {
@@ -170,9 +172,7 @@
         this.pd = pd;
     }
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     public LocalizableMessage getMessageObject() {
         return message;
     }

--
Gitblit v1.10.0