[hornetq-commits] JBoss hornetq SVN: r11367 - branches/HORNETQ-720_Replication/hornetq-core/src/main/java/org/hornetq/core/persistence/impl/journal.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Sep 19 11:33:50 EDT 2011


Author: borges
Date: 2011-09-19 11:33:50 -0400 (Mon, 19 Sep 2011)
New Revision: 11367

Modified:
   branches/HORNETQ-720_Replication/hornetq-core/src/main/java/org/hornetq/core/persistence/impl/journal/LargeServerMessageImpl.java
Log:
delete unused method

Modified: branches/HORNETQ-720_Replication/hornetq-core/src/main/java/org/hornetq/core/persistence/impl/journal/LargeServerMessageImpl.java
===================================================================
--- branches/HORNETQ-720_Replication/hornetq-core/src/main/java/org/hornetq/core/persistence/impl/journal/LargeServerMessageImpl.java	2011-09-19 15:32:57 UTC (rev 11366)
+++ branches/HORNETQ-720_Replication/hornetq-core/src/main/java/org/hornetq/core/persistence/impl/journal/LargeServerMessageImpl.java	2011-09-19 15:33:50 UTC (rev 11367)
@@ -107,29 +107,6 @@
       bodySize += bytes.length;
    }
 
-   public void encodeBody(final HornetQBuffer bufferOut, final BodyEncoder context, final int size)
-   {
-      try
-      {
-         // This could maybe be optimized (maybe reading directly into bufferOut)
-         ByteBuffer bufferRead = ByteBuffer.allocate(size);
-
-         int bytesRead = context.encode(bufferRead);
-
-         bufferRead.flip();
-
-         if (bytesRead > 0)
-         {
-            bufferOut.writeBytes(bufferRead.array(), 0, bytesRead);
-         }
-
-      }
-      catch (Exception e)
-      {
-         throw new RuntimeException(e.getMessage(), e);
-      }
-   }
-
    @Override
    public synchronized int getEncodeSize()
    {



More information about the hornetq-commits mailing list