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/spi/WriteableStorage.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/WriteableStorage.java b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/WriteableStorage.java
index 7d0f13f..a501872 100644
--- a/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/WriteableStorage.java
+++ b/opendj3-server-dev/src/server/org/opends/server/backends/pluggable/spi/WriteableStorage.java
@@ -33,7 +33,7 @@
 public interface WriteableStorage extends ReadableStorage
 {
   /**
-   * Opens the tree having the provided name. The tree is created if does not already exist.
+   * Opens the tree identified by the provided name. The tree is created if it does not already exist.
    *
    * @param name
    *          the tree name
@@ -41,7 +41,7 @@
   void openTree(TreeName name);
 
   /**
-   * Truncates the tree having the provided name. It removes all the records in the tree.
+   * Truncates the tree identified by the provided name. It removes all the records in the tree.
    *
    * @param name
    *          the tree name
@@ -59,7 +59,7 @@
   void renameTree(TreeName oldName, TreeName newName);
 
   /**
-   * Deletes the tree having the provided name.
+   * Deletes the tree identified by the provided name.
    *
    * @param name
    *          the tree name

--
Gitblit v1.10.0