From 8d21db36015f8560d9cd2bcee9817f2c0a07a386 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 14:11:47 +0000
Subject: [PATCH] Autorefactored javadocs
---
opendj-server-legacy/src/test/java/org/opends/server/util/TestLDIFReader.java | 26 ++++++++++----------------
1 files changed, 10 insertions(+), 16 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/util/TestLDIFReader.java b/opendj-server-legacy/src/test/java/org/opends/server/util/TestLDIFReader.java
index 45227c5..fbdc196 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/util/TestLDIFReader.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/util/TestLDIFReader.java
@@ -51,34 +51,28 @@
* {@link org.opends.server.util.LDIFReader} class.
*/
public final class TestLDIFReader extends UtilTestCase {
- // Top object class.
+ /** Top object class. */
private ObjectClass OC_TOP;
-
- // Person object class.
+ /** Person object class. */
private ObjectClass OC_PERSON;
- // Object class attribute type.
+ /** Object class attribute type. */
private AttributeType AT_OC;
-
- // Common name attribute type.
+ /** Common name attribute type. */
private AttributeType AT_CN;
-
- // Surname attribute type.
+ /** Surname attribute type. */
private AttributeType AT_SN;
-
- // Description attribute type.
+ /** Description attribute type. */
private AttributeType AT_DESCR;
-
- // Telephone number attribute type.
+ /** Telephone number attribute type. */
private AttributeType AT_TELN;
- // Temporary file containing an attribute value.
+ /** Temporary file containing an attribute value. */
private File TEMP_FILE;
- // Temporary file content.
+ /** Temporary file content. */
private static final String TEMP_FILE_STRING = "hello world";
-
- // Temporary file LDIF.
+ /** Temporary file LDIF. */
private static final String TEMP_FILE_LDIF = "dn: cn=john smith, dc=com\n"
+ "changetype: add\n" + "objectClass: top\n"
+ "objectClass: person\n" + "cn: john\n" + "sn: smith\n"
--
Gitblit v1.10.0