From a00e725a364e9eb859ca8ed2c914e6637c94cb9d Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 29 Mar 2007 21:12:30 +0000
Subject: [PATCH] Back out the commit included in revision 1539 because it does not build properly (it appears to reference classes that are not in the repository).

---
 opendj-sdk/opends/src/server/org/opends/server/synchronization/protocol/SynchronizationMessage.java |   27 ---------------------------
 1 files changed, 0 insertions(+), 27 deletions(-)

diff --git a/opendj-sdk/opends/src/server/org/opends/server/synchronization/protocol/SynchronizationMessage.java b/opendj-sdk/opends/src/server/org/opends/server/synchronization/protocol/SynchronizationMessage.java
index 59777e5..aab19be 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/synchronization/protocol/SynchronizationMessage.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/synchronization/protocol/SynchronizationMessage.java
@@ -47,13 +47,6 @@
   static final byte MSG_TYPE_CHANGELOG_START = 7;
   static final byte MSG_TYPE_WINDOW = 8;
   static final byte MSG_TYPE_HEARTBEAT = 9;
-  static final byte MSG_TYPE_INITIALIZE_REQUEST = 10;
-  static final byte MSG_TYPE_INITIALIZE_TARGET = 11;
-  static final byte MSG_TYPE_ENTRY = 12;
-  static final byte MSG_TYPE_DONE = 13;
-  static final byte MSG_TYPE_ERROR = 14;
-  // Adding a new type of message here probably requires to
-  // change accordingly generateMsg method below
 
   /**
    * Return the byte[] representation of this message.
@@ -67,11 +60,6 @@
    * MSG_TYPE_CHANGELOG_START
    * MSG_TYPE_WINDOW
    * MSG_TYPE_HEARTBEAT
-   * MSG_TYPE_INITIALIZE
-   * MSG_TYPE_INITIALIZE_TARGET
-   * MSG_TYPE_ENTRY
-   * MSG_TYPE_DONE
-   * MSG_TYPE_ERROR
    *
    * @return the byte[] representation of this message.
    */
@@ -119,21 +107,6 @@
       case MSG_TYPE_HEARTBEAT:
         msg = new HeartbeatMessage(buffer);
       break;
-      case MSG_TYPE_INITIALIZE_REQUEST:
-        msg = new InitializeRequestMessage(buffer);
-      break;
-      case MSG_TYPE_INITIALIZE_TARGET:
-        msg = new InitializeTargetMessage(buffer);
-      break;
-      case MSG_TYPE_ENTRY:
-        msg = new EntryMessage(buffer);
-      break;
-      case MSG_TYPE_DONE:
-        msg = new DoneMessage(buffer);
-      break;
-      case MSG_TYPE_ERROR:
-        msg = new ErrorMessage(buffer);
-      break;
       default:
         throw new DataFormatException("received message with unknown type");
     }

--
Gitblit v1.10.0