From 3e3246e42af6979556dec66ec10ad3d3e009217c 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.

---
 opendj-sdk/opends/src/server/org/opends/server/backends/jeb/JebFormat.java |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/JebFormat.java b/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/JebFormat.java
index 6e5627c..583855d 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/JebFormat.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/backends/jeb/JebFormat.java
@@ -85,7 +85,6 @@
   static public byte[] decodeDatabaseEntry(byte[] bytes)
        throws ASN1Exception,DataFormatException
   {
-
     // FIXME: This array copy could be very costly on performance. We need to
     // FIXME: find a faster way to implement this versioning feature.
     // Remove version number from the encoded bytes
@@ -157,7 +156,6 @@
   static public Entry entryFromDatabase(byte[] bytes)
        throws DirectoryException,ASN1Exception,LDAPException,DataFormatException
   {
-
     byte[] uncompressedBytes = decodeDatabaseEntry(bytes);
     return decodeDirectoryServerEntry(uncompressedBytes);
   }
@@ -176,7 +174,6 @@
   static private Entry decodeDirectoryServerEntry(byte[] bytes)
        throws DirectoryException,ASN1Exception,LDAPException
   {
-
     HashMap<ObjectClass, String> objectClasses;
     HashMap<AttributeType, List<Attribute>> userAttributes =
          new HashMap<AttributeType, List<Attribute>>();
@@ -261,7 +258,6 @@
    */
   static public byte[] encodeDatabaseEntry(byte[] bytes, DataConfig dataConfig)
   {
-
     int uncompressedSize = 0;
 
     // Do optional compression.
@@ -312,7 +308,6 @@
    */
   static public byte[] entryToDatabase(Entry entry, DataConfig dataConfig)
   {
-
     byte[] uncompressedBytes = encodeDirectoryServerEntry(entry);
     return encodeDatabaseEntry(uncompressedBytes, dataConfig);
   }
@@ -325,7 +320,6 @@
    */
   static public byte[] entryToDatabase(Entry entry)
   {
-
     return entryToDatabase(entry, new DataConfig());
   }
 
@@ -337,7 +331,6 @@
    */
   static private byte[] encodeDirectoryServerEntry(Entry entry)
   {
-
     // Encode the DN (LDAPDN).
     ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(4);
     elements.add(new ASN1OctetString(entry.getDN().toString()));

--
Gitblit v1.10.0