From 061cfa8f64566b1a8661fd4bc2df87dfcaa41866 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 27 Jan 2015 17:00:39 +0000
Subject: [PATCH] OPENDJ-1716 Various PluggableBackend/Storage refactorings Code review: Nicolas Capponi

---
 opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DatabaseContainer.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DatabaseContainer.java b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DatabaseContainer.java
index 985a58b..1838e8b 100644
--- a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DatabaseContainer.java
+++ b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/DatabaseContainer.java
@@ -156,7 +156,8 @@
    * @param txn The JE transaction handle, or null if none.
    * @param key The record key.
    * @param value The record value.
-   * @return <code>true</code> if the key-value mapping could be inserted, <code>false</code> if the key was already mapped to another value
+   * @return {@code true} if the key-value mapping could be inserted,
+   *         {@code false} if the key was already mapped to another value
    * @throws StorageRuntimeException If an error occurs in the JE operation.
    */
   boolean insert(WriteableStorage txn, ByteString key, ByteString value) throws StorageRuntimeException
@@ -174,7 +175,7 @@
    * simple wrapper around the JE Database.delete method.
    * @param txn The JE transaction handle, or null if none.
    * @param key The key of the record to be read.
-   * @return <code>true</code> if the key mapping was removed, <code>false</code> otherwise
+   * @return {@code true} if the key mapping was removed, {@code false} otherwise
    * @throws StorageRuntimeException If an error occurs in the JE operation.
    */
   boolean delete(WriteableStorage txn, ByteSequence key) throws StorageRuntimeException

--
Gitblit v1.10.0