Skip to content

Commit 5a9bd45

Browse files
committed
Fixed some javadoc issues
1 parent 17b53a2 commit 5a9bd45

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

core-api/src/main/java/org/apache/directory/server/core/api/normalization/FilterNormalizingVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static boolean isFilterChar( char c )
127127

128128
/**
129129
* A private method used to normalize a value. At this point, the value
130-
* is a Value<byte[]>, we have to translate it to a Value<String> if its
130+
* is a Value&lt;byte[]&gt;, we have to translate it to a Value<String> if its
131131
* AttributeType is H-R. Then we have to normalize the value accordingly
132132
* to the AttributeType Normalizer.
133133
*

protocol-ldap/src/main/java/org/apache/directory/server/ldap/LdapServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,13 +162,13 @@ public class LdapServer extends DirectoryBackedService
162162

163163
/**
164164
* The maximum size limit.
165-
* @see {@link LdapServer#MAX_SIZE_LIMIT_DEFAULT }
165+
* @see LdapServer#MAX_SIZE_LIMIT_DEFAULT
166166
*/
167167
private long maxSizeLimit = MAX_SIZE_LIMIT_DEFAULT;
168168

169169
/**
170170
* The maximum time limit.
171-
* @see {@link LdapServer#MAX_TIME_LIMIT_DEFAULT }
171+
* @see LdapServer#MAX_TIME_LIMIT_DEFAULT
172172
*/
173173
private int maxTimeLimit = MAX_TIME_LIMIT_DEFAULT;
174174

xdbm-partition/src/main/java/org/apache/directory/server/core/partition/impl/btree/AbstractBTreePartition.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public abstract class AbstractBTreePartition extends AbstractPartition implement
207207
/** A lock to protect the backend from concurrent reads/writes */
208208
private ReadWriteLock rwLock;
209209

210-
/** a cache to hold <entryUUID, Dn> pairs, this is used for speeding up the buildEntryDn() method */
210+
/** a cache to hold ;lt;entryUUID, Dn&gt; pairs, this is used for speeding up the buildEntryDn() method */
211211
private Cache<String, Dn> entryDnCache;
212212

213213
/** a semaphore to serialize the writes on context entry while updating contextCSN attribute */
@@ -2387,7 +2387,7 @@ public void moveAndRename( PartitionTxn partitionTxn, Dn oldDn, Dn newSuperiorDn
23872387
* @param partitionTxn The transaction to use
23882388
* @param modAvs The modified AVAs
23892389
* @param entryId The Entry ID
2390-
* @throws {@link LdapException} If the AVA cannt be processed properly
2390+
* @throws LdapException If the AVA cannt be processed properly
23912391
* @throws IndexNotFoundException If teh index is not found
23922392
*/
23932393
private void processModifiedAvas( PartitionTxn partitionTxn, Map<String, List<ModDnAva>> modAvas, String entryId )

0 commit comments

Comments
 (0)