From a49dee3f75d6e2548e9114d9495655dd56f06973 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.
---
opends/src/server/org/opends/server/extensions/DefaultEntryCache.java | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java b/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
index 5b5efc4..f661d3f 100644
--- a/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
+++ b/opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
@@ -84,7 +84,6 @@
public void initializeEntryCache(ConfigEntry configEntry)
throws ConfigException, InitializationException
{
-
// No implementation required.
}
@@ -97,7 +96,6 @@
*/
public void finalizeEntryCache()
{
-
// No implementation required.
}
@@ -115,7 +113,6 @@
*/
public boolean containsEntry(DN entryDN)
{
-
// This implementation does not store any entries.
return false;
}
@@ -134,7 +131,6 @@
*/
public Entry getEntry(DN entryDN)
{
-
// This implementation does not store any entries.
return null;
}
@@ -153,7 +149,6 @@
*/
public long getEntryID(DN entryDN)
{
-
// This implementation does not store any entries.
return -1;
}
@@ -178,7 +173,6 @@
*/
public Entry getEntry(DN entryDN, LockType lockType, List<Lock> lockList)
{
-
// This implementation does not store entries.
return null;
}
@@ -206,7 +200,6 @@
public Entry getEntry(Backend backend, long entryID, LockType lockType,
List<Lock> lockList)
{
-
// This implementation does not store entries.
return null;
}
@@ -225,7 +218,6 @@
*/
public void putEntry(Entry entry, Backend backend, long entryID)
{
-
// This implementation does not store entries.
}
@@ -251,7 +243,6 @@
*/
public boolean putEntryIfAbsent(Entry entry, Backend backend, long entryID)
{
-
// This implementation does not store entries, so we will never have a
// conflict.
return true;
@@ -266,7 +257,6 @@
*/
public void removeEntry(DN entryDN)
{
-
// This implementation does not store entries.
}
@@ -278,7 +268,6 @@
*/
public void clear()
{
-
// This implementation does not store entries.
}
@@ -292,7 +281,6 @@
*/
public void clearBackend(Backend backend)
{
-
// This implementation does not store entries.
}
@@ -305,7 +293,6 @@
*/
public void clearSubtree(DN baseDN)
{
-
// This implementation does not store entries.
}
@@ -319,7 +306,6 @@
*/
public void handleLowMemory()
{
-
// This implementation does not store entries, so there are no resources
// that it can free.
}
--
Gitblit v1.10.0