From dc135416ed7334a4778c55551be677d535df5032 Mon Sep 17 00:00:00 2001
From: davidely <davidely@localhost>
Date: Wed, 15 Aug 2007 22:48:11 +0000
Subject: [PATCH] Removed ambiguity between two Messages.raw methods to make certain IDEs happy by reodering the parameters of one of the methods

---
 opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ProtocolWindowTest.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ProtocolWindowTest.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ProtocolWindowTest.java
index 26f515f..ab60995 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ProtocolWindowTest.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ProtocolWindowTest.java
@@ -94,8 +94,8 @@
   public void saturateQueueAndRestart() throws Exception
   {
     logError(Message.raw(
-        "Starting Replication ProtocolWindowTest : saturateAndRestart",
-            Category.SYNC, Severity.INFORMATION));
+        Category.SYNC, Severity.INFORMATION,
+        "Starting Replication ProtocolWindowTest : saturateAndRestart"));
 
     final DN baseDn = DN.decode("ou=People,dc=example,dc=com");
 
@@ -339,8 +339,8 @@
   public void protocolVersion() throws Exception
   {
     logError(Message.raw(
-            "Starting Replication ProtocolWindowTest : protocolVersion",
-            Category.SYNC, Severity.INFORMATION));
+        Category.SYNC, Severity.INFORMATION,
+        "Starting Replication ProtocolWindowTest : protocolVersion"));
 
     final DN baseDn = DN.decode("ou=People,dc=example,dc=com");
 

--
Gitblit v1.10.0