From 93dc3520b26d74dadbdad265182d9beaa9145dc4 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 19 Apr 2016 13:16:38 +0000
Subject: [PATCH] opendj-config: added @Override + Autorefactor'ed comments

---
 opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java |   11 +++--------
 1 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java b/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
index 5a9c75a..d12f706 100644
--- a/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
+++ b/opendj-config/src/main/java/org/forgerock/opendj/config/PropertyException.java
@@ -28,9 +28,7 @@
  */
 public final class PropertyException extends RuntimeException implements LocalizableException {
 
-    /**
-     * Version ID required by serializable classes.
-     */
+    /** Version ID required by serializable classes. */
     private static final long serialVersionUID = -8465109598081914482L;
 
     /**
@@ -139,10 +137,7 @@
     /** 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) {
@@ -158,7 +153,7 @@
         this.pd = pd;
     }
 
-    /** {@inheritDoc} */
+    @Override
     public LocalizableMessage getMessageObject() {
         return message;
     }

--
Gitblit v1.10.0