[hornetq-commits] JBoss hornetq SVN: r12263 - in trunk/hornetq-core/src/main/java/org/hornetq: core/client/impl and 2 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Mar 8 11:04:46 EST 2012


Author: borges
Date: 2012-03-08 11:04:45 -0500 (Thu, 08 Mar 2012)
New Revision: 12263

Modified:
   trunk/hornetq-core/src/main/java/org/hornetq/api/core/client/ServerLocator.java
   trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/Topology.java
   trunk/hornetq-core/src/main/java/org/hornetq/core/messagecounter/MessageCounter.java
   trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ServerSessionImpl.java
Log:
Fix javadoc warnings

Modified: trunk/hornetq-core/src/main/java/org/hornetq/api/core/client/ServerLocator.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/api/core/client/ServerLocator.java	2012-03-08 10:49:15 UTC (rev 12262)
+++ trunk/hornetq-core/src/main/java/org/hornetq/api/core/client/ServerLocator.java	2012-03-08 16:04:45 UTC (rev 12263)
@@ -38,19 +38,19 @@
 	 * This method will disable any checks when a GarbageCollection happens
 	 * leaving connections open. The JMS Layer will make specific usage of this
 	 * method, since the ConnectionFactory.finalize should release this.
-	 * 
+	 *
 	 * Warning: You may leave resources unattended if you call this method and
 	 * don't take care of cleaning the resources yourself.
 	 */
    void disableFinalizeCheck();
-   
+
    /**
     * Create a ClientSessionFactory using whatever load balancing policy is in force
     * @return The ClientSessionFactory
     * @throws Exception
     */
    ClientSessionFactory createSessionFactory() throws Exception;
-   
+
    /**
     * Create a ClientSessionFactory to a specific server. The server must already be known about by this ServerLocator.
     * This method allows the user to make a connection to a specific server bypassing any load balancing policy in force
@@ -59,7 +59,7 @@
     * @throws Exception if a failure happened in creating the ClientSessionFactory or the ServerLocator does not know about the passed in transportConfiguration
     */
    ClientSessionFactory createSessionFactory(final String nodeID) throws Exception;
-   
+
   /**
     * Create a ClientSessionFactory to a specific server. The server must already be known about by this ServerLocator.
     * This method allows the user to make a connection to a specific server bypassing any load balancing policy in force
@@ -68,21 +68,21 @@
     * @throws Exception if a failure happened in creating the ClientSessionFactory or the ServerLocator does not know about the passed in transportConfiguration
     */
    ClientSessionFactory createSessionFactory(final TransportConfiguration transportConfiguration) throws Exception;
-   
+
    /**
     * Returns the period used to check if a client has failed to receive pings from the server.
-    *   
+    *
     * Period is in milliseconds, default value is {@link HornetQClient#DEFAULT_CLIENT_FAILURE_CHECK_PERIOD}.
-    * 
+    *
     * @return the period used to check if a client has failed to receive pings from the server
     */
    long getClientFailureCheckPeriod();
 
    /**
     * Sets the period (in milliseconds) used to check if a client has failed to receive pings from the server.
-    * 
+    *
     * Value must be -1 (to disable) or greater than 0.
-    * 
+    *
     * @param clientFailureCheckPeriod the period to check failure
     */
    void setClientFailureCheckPeriod(long clientFailureCheckPeriod);
@@ -101,7 +101,7 @@
 
    /**
     * Sets whether large messages received by consumers created through this factory will be cached in temporary files or not.
-    * 
+    *
     * @param cached <code>true</code> to cache large messages in temporary files, <code>false</code> else
     */
    void setCacheLargeMessagesClient(boolean cached);
@@ -109,18 +109,18 @@
    /**
     * Returns the connection <em>time-to-live</em>.
     * This TTL determines how long the server will keep a connection alive in the absence of any data arriving from the client.
-    * 
+    *
     * Value is in milliseconds, default value is {@link HornetQClient#DEFAULT_CONNECTION_TTL}.
-    * 
+    *
     * @return the connection time-to-live in milliseconds
     */
    long getConnectionTTL();
 
    /**
     * Sets this factory's connections <em>time-to-live</em>.
-    * 
+    *
     * Value must be -1 (to disable) or greater or equals to 0.
-    * 
+    *
     * @param connectionTTL period in milliseconds
     */
    void setConnectionTTL(long connectionTTL);
@@ -173,18 +173,18 @@
 
    /**
     * Sets the large message size threshold.
-    * 
+    *
     * Value must be greater than 0.
-    * 
+    *
     * @param minLargeMessageSize large message size threshold in bytes
     */
    void setMinLargeMessageSize(int minLargeMessageSize);
 
    /**
     * Returns the window size for flow control of the consumers created through this factory.
-    * 
+    *
     * Value is in bytes, default value is {@link HornetQClient#DEFAULT_CONSUMER_WINDOW_SIZE}.
-    * 
+    *
     * @return the window size used for consumer flow control
     */
    int getConsumerWindowSize();
@@ -200,37 +200,37 @@
 
    /**
     * Returns the maximum rate of message consumption for consumers created through this factory.
-    * 
+    *
     * This value controls the rate at which a consumer can consume messages. A consumer will never consume messages at a rate faster than the rate specified.
-    * 
+    *
     * Value is -1 (to disable) or a positive integer corresponding to the maximum desired message consumption rate specified in units of messages per second.
     * Default value is {@link HornetQClient#DEFAULT_CONSUMER_MAX_RATE}.
-    * 
+    *
     * @return the consumer max rate
     */
    int getConsumerMaxRate();
 
    /**
     * Sets the maximum rate of message consumption for consumers created through this factory.
-    * 
+    *
     * Value must -1 (to disable) or a positive integer corresponding to the maximum desired message consumption rate specified in units of messages per second.
-    * 
+    *
     * @param consumerMaxRate maximum rate of message consumption (in messages per seconds)
     */
    void setConsumerMaxRate(int consumerMaxRate);
 
    /**
     * Returns the size for the confirmation window of clients using this factory.
-    * 
+    *
     * Value is in bytes or -1 (to disable the window). Default value is {@link HornetQClient#DEFAULT_CONFIRMATION_WINDOW_SIZE}.
-    * 
+    *
     * @return the size for the confirmation window of clients using this factory
     */
    int getConfirmationWindowSize();
 
    /**
     * Sets the size for the confirmation window buffer of clients using this factory.
-    * 
+    *
     * Value must be -1 (to disable the window) or greater than 0.
 
     * @param confirmationWindowSize size of the confirmation window (in bytes)
@@ -239,40 +239,40 @@
 
    /**
     * Returns the window size for flow control of the producers created through this factory.
-    * 
+    *
     * Value must be -1 (to disable flow control) or greater than 0 to determine the maximum amount of bytes at any give time (to prevent overloading the connection).
     * Default value is {@link HornetQClient#DEFAULT_PRODUCER_WINDOW_SIZE}.
-    * 
+    *
     * @return the window size for flow control of the producers created through this factory.
     */
    int getProducerWindowSize();
 
    /**
     * Returns the window size for flow control of the producers created through this factory.
-    * 
+    *
     * Value must be -1 (to disable flow control) or greater than 0.
-    * 
+    *
     * @param producerWindowSize window size (in bytest) for flow control of the producers created through this factory.
     */
    void setProducerWindowSize(int producerWindowSize);
 
    /**
     * Returns the maximum rate of message production for producers created through this factory.
-    * 
+    *
     * This value controls the rate at which a producer can produce messages. A producer will never produce messages at a rate faster than the rate specified.
-    * 
+    *
     * Value is -1 (to disable) or a positive integer corresponding to the maximum desired message production rate specified in units of messages per second.
     * Default value is {@link HornetQClient#DEFAULT_PRODUCER_MAX_RATE}.
-    * 
+    *
     * @return  maximum rate of message production (in messages per seconds)
     */
    int getProducerMaxRate();
 
    /**
     * Sets the maximum rate of message production for producers created through this factory.
-    * 
+    *
     * Value must -1 (to disable) or a positive integer corresponding to the maximum desired message production rate specified in units of messages per second.
-    * 
+    *
     * @param producerMaxRate maximum rate of message production (in messages per seconds)
     */
    void setProducerMaxRate(int producerMaxRate);
@@ -280,9 +280,9 @@
 	/**
 	 * Returns whether consumers created through this factory will block while
 	 * sending message acknowledgments or do it asynchronously.
-	 * 
+	 *
 	 * Default value is {@link HornetQClient#DEFAULT_BLOCK_ON_ACKNOWLEDGE}.
-	 * 
+	 *
 	 * @return whether consumers will block while sending message
 	 *         acknowledgments or do it asynchronously
 	 */
@@ -291,7 +291,7 @@
 	/**
 	 * Sets whether consumers created through this factory will block while
 	 * sending message acknowledgments or do it asynchronously.
-	 * 
+	 *
 	 * @param blockOnAcknowledge
 	 *            <code>true</code> to block when sending message
 	 *            acknowledgments or <code>false</code> to send them
@@ -304,7 +304,7 @@
     * <br>
     * If the session is configured to send durable message asynchronously, the client can set a SendAcknowledgementHandler on the ClientSession
     * to be notified once the message has been handled by the server.
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_BLOCK_ON_DURABLE_SEND}.
     *
     * @return whether producers will block while sending persistent messages or do it asynchronously
@@ -313,7 +313,7 @@
 
    /**
     * Sets whether producers created through this factory will block while sending <em>durable</em> messages or do it asynchronously.
-    * 
+    *
     * @param blockOnDurableSend <code>true</code> to block when sending durable messages or <code>false</code> to send them asynchronously
     */
    void setBlockOnDurableSend(boolean blockOnDurableSend);
@@ -323,7 +323,7 @@
     * <br>
     * If the session is configured to send non-durable message asynchronously, the client can set a SendAcknowledgementHandler on the ClientSession
     * to be notified once the message has been handled by the server.
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_BLOCK_ON_NON_DURABLE_SEND}.
     *
     * @return whether producers will block while sending non-durable messages or do it asynchronously
@@ -332,7 +332,7 @@
 
    /**
     * Sets whether producers created through this factory will block while sending <em>non-durable</em> messages or do it asynchronously.
-    * 
+    *
     * @param blockOnNonDurableSend <code>true</code> to block when sending non-durable messages or <code>false</code> to send them asynchronously
     */
    void setBlockOnNonDurableSend(boolean blockOnNonDurableSend);
@@ -340,11 +340,11 @@
    /**
     * Returns whether producers created through this factory will automatically
     * assign a group ID to the messages they sent.
-    * 
+    *
     * if <code>true</code>, a random unique group ID is created and set on each message for the property
     * {@link org.hornetq.api.core.Message#HDR_GROUP_ID}.
     * Default value is {@link HornetQClient#DEFAULT_AUTO_GROUP}.
-    * 
+    *
     * @return whether producers will automatically assign a group ID to their messages
     */
    boolean isAutoGroup();
@@ -352,23 +352,23 @@
    /**
     * Sets whether producers created through this factory will automatically
     * assign a group ID to the messages they sent.
-    * 
+    *
     * @param autoGroup <code>true</code> to automatically assign a group ID to each messages sent through this factory, <code>false</code> else
     */
    void setAutoGroup(boolean autoGroup);
 
    /**
     * Returns the group ID that will be eventually set on each message for the property {@link org.hornetq.api.core.Message#HDR_GROUP_ID}.
-    * 
+    *
     * Default value is is <code>null</code> and no group ID will be set on the messages.
-    * 
+    *
     * @return the group ID that will be eventually set on each message
     */
    String getGroupID();
-   
+
    /**
     * Sets the group ID that will be  set on each message sent through this factory.
-    * 
+    *
     * @param groupID the group ID to use
     */
    void setGroupID(String groupID);
@@ -384,7 +384,7 @@
 	 * Sets to <code>true</code> to pre-acknowledge consumed messages on the
 	 * server before they are sent to consumers, else set to <code>false</code>
 	 * to let clients acknowledge the message they consume.
-	 * 
+	 *
 	 * @param preAcknowledge
 	 *            <code>true</code> to enable pre-acknowledgment,
 	 *            <code>false</code> else
@@ -393,27 +393,27 @@
 
 	/**
 	 * Returns the acknowledgments batch size.
-	 * 
+	 *
 	 * Default value is {@link HornetQClient#DEFAULT_ACK_BATCH_SIZE}.
-	 * 
+	 *
 	 * @return the acknowledgments batch size
 	 */
    int getAckBatchSize();
 
 	/**
 	 * Sets the acknowledgments batch size.
-	 * 
+	 *
 	 * Value must be equal or greater than 0.
-	 * 
+	 *
 	 * @param ackBatchSize
 	 *            acknowledgments batch size
 	 */
    void setAckBatchSize(int ackBatchSize);
 
    /**
-    * Returns an array of TransportConfigurations representing the static list of live servers used when
-    * creating this object
-    * @return
+    * Returns an array of TransportConfigurations representing the static list of live servers used
+    * when creating this object
+    * @return array with all static {@link TransportConfiguration}s
     */
    TransportConfiguration[] getStaticTransportConfigurations();
 
@@ -425,9 +425,9 @@
    /**
     * Returns whether this factory will use global thread pools (shared among all the factories in the same JVM)
     * or its own pools.
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_USE_GLOBAL_POOLS}.
-    * 
+    *
     * @return <code>true</code> if this factory uses global thread pools, <code>false</code> else
     */
    boolean isUseGlobalPools();
@@ -435,90 +435,90 @@
    /**
     * Sets whether this factory will use global thread pools (shared among all the factories in the same JVM)
     * or its own pools.
-    * 
+    *
     * @param useGlobalPools <code>true</code> to let this factory uses global thread pools, <code>false</code> else
     */
    void setUseGlobalPools(boolean useGlobalPools);
 
    /**
     * Returns the maximum size of the scheduled thread pool.
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_SCHEDULED_THREAD_POOL_MAX_SIZE}.
-    * 
+    *
     * @return the maximum size of the scheduled thread pool.
     */
    int getScheduledThreadPoolMaxSize();
 
    /**
     * Sets the maximum size of the scheduled thread pool.
-    * 
+    *
     * This setting is relevant only if this factory does not use global pools.
     * Value must be greater than 0.
-    * 
+    *
     * @param scheduledThreadPoolMaxSize  maximum size of the scheduled thread pool.
     */
    void setScheduledThreadPoolMaxSize(int scheduledThreadPoolMaxSize);
 
    /**
     * Returns the maximum size of the thread pool.
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_THREAD_POOL_MAX_SIZE}.
-    * 
+    *
     * @return the maximum size of the thread pool.
     */
    int getThreadPoolMaxSize();
 
    /**
     * Sets the maximum size of the thread pool.
-    * 
+    *
     * This setting is relevant only if this factory does not use global pools.
     * Value must be -1 (for unlimited thread pool) or greater than 0.
-    * 
+    *
     * @param threadPoolMaxSize  maximum size of the thread pool.
     */
    void setThreadPoolMaxSize(int threadPoolMaxSize);
 
    /**
-    * Returns the time to retry connections created by this factory after failure. 
-    * 
+    * Returns the time to retry connections created by this factory after failure.
+    *
     * Value is in milliseconds, default is {@link HornetQClient#DEFAULT_RETRY_INTERVAL}.
-    * 
+    *
     * @return the time to retry connections created by this factory after failure
     */
    long getRetryInterval();
 
    /**
     * Sets the time to retry connections created by this factory after failure.
-    * 
+    *
     * Value must be greater than 0.
-    * 
-    * @param retryInterval time (in milliseconds) to retry connections created by this factory after failure 
+    *
+    * @param retryInterval time (in milliseconds) to retry connections created by this factory after failure
     */
    void setRetryInterval(long retryInterval);
 
    /**
     * Returns the multiplier to apply to successive retry intervals.
-    * 
+    *
     * Default value is  {@link HornetQClient#DEFAULT_RETRY_INTERVAL_MULTIPLIER}.
-    * 
+    *
     * @return the multiplier to apply to successive retry intervals
     */
    double getRetryIntervalMultiplier();
 
    /**
     * Sets the multiplier to apply to successive retry intervals.
-    * 
+    *
     * Value must be positive.
-    * 
+    *
     * @param retryIntervalMultiplier multiplier to apply to successive retry intervals
     */
    void setRetryIntervalMultiplier(double retryIntervalMultiplier);
 
    /**
     * Returns the maximum retry interval (in the case a retry interval multiplier has been specified).
-    * 
+    *
     * Value is in milliseconds, default value is  {@link HornetQClient#DEFAULT_MAX_RETRY_INTERVAL}.
-    * 
+    *
     * @return the maximum retry interval
     */
    long getMaxRetryInterval();
@@ -534,18 +534,18 @@
 
    /**
     * Returns the maximum number of attempts to retry connection in case of failure.
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_RECONNECT_ATTEMPTS}.
-    * 
+    *
     * @return the maximum number of attempts to retry connection in case of failure.
     */
    int getReconnectAttempts();
 
    /**
     * Sets the maximum number of attempts to retry connection in case of failure.
-    * 
+    *
     * Value must be -1 (to retry infinitely), 0 (to never retry connection) or greater than 0.
-    * 
+    *
     * @param reconnectAttempts maximum number of attempts to retry connection in case of failure
     */
    void setReconnectAttempts(int reconnectAttempts);
@@ -556,66 +556,66 @@
    /**
     * Returns true if the client will automatically attempt to connect to the backup server if the initial
     * connection to the live server fails
-    * 
+    *
     * Default value is {@link HornetQClient#DEFAULT_FAILOVER_ON_INITIAL_CONNECTION}.
     */
    boolean isFailoverOnInitialConnection();
-   
+
    /**
     * Sets the value for FailoverOnInitialReconnection
-    * 
+    *
     * @param failover
     */
    void setFailoverOnInitialConnection(boolean failover);
 
    /**
     * Returns the class name of the connection load balancing policy.
-    * 
+    *
     * Default value is "org.hornetq.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy".
-    * 
+    *
     * @return the class name of the connection load balancing policy
     */
    String getConnectionLoadBalancingPolicyClassName();
 
    /**
     * Sets the class name of the connection load balancing policy.
-    * 
+    *
     * Value must be the name of a class implementing {@link ConnectionLoadBalancingPolicy}.
-    * 
+    *
     * @param loadBalancingPolicyClassName class name of the connection load balancing policy
     */
    void setConnectionLoadBalancingPolicyClassName(String loadBalancingPolicyClassName);
 
    /**
     * Returns the initial size of messages created through this factory.
-    * 
+    *
     * Value is in bytes, default value is  {@link HornetQClient#DEFAULT_INITIAL_MESSAGE_PACKET_SIZE}.
-    * 
+    *
     * @return the initial size of messages created through this factory
     */
    int getInitialMessagePacketSize();
 
    /**
     * Sets the initial size of messages created through this factory.
-    * 
+    *
     * Value must be greater than 0.
-    * 
+    *
     * @param size initial size of messages created through this factory.
     */
    void setInitialMessagePacketSize(int size);
-   
+
    /**
     * Adds an interceptor which will be executed <em>after packets are received from the server</em>.
-    * 
+    *
     * @param interceptor an Interceptor
     */
    void addInterceptor(Interceptor interceptor);
 
    /**
     * Removes an interceptor.
-    * 
+    *
     * @param interceptor interceptor to remove
-    * 
+    *
     * @return <code>true</code> if the interceptor is removed from this factory, <code>false</code> else
     */
    boolean removeInterceptor(Interceptor interceptor);
@@ -624,19 +624,17 @@
     * Closes this factory and release all its resources
     */
    void close();
-   
 
    /**
     * Exposes the Topology used by this ServerLocator.
-    * @return
+    * @return topology
     */
    Topology getTopology();
 
-
    boolean isHA();
-   
+
    boolean isCompressLargeMessage();
-   
+
    void setCompressLargeMessage(boolean compress);
 
    void addClusterTopologyListener(ClusterTopologyListener listener);

Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/Topology.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/Topology.java	2012-03-08 10:49:15 UTC (rev 12262)
+++ trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/Topology.java	2012-03-08 16:04:45 UTC (rev 12263)
@@ -152,7 +152,7 @@
     *           time millis for starts, and a ++ of that number for shutdown.
     * @param nodeId
     * @param memberInput
-    * @return
+    * @return {@code true} if an update did take place. Note that backups are *always* updated.
     */
    public boolean updateMember(final long uniqueEventID, final String nodeId, final TopologyMember memberInput)
    {

Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/messagecounter/MessageCounter.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/core/messagecounter/MessageCounter.java	2012-03-08 10:49:15 UTC (rev 12262)
+++ trunk/hornetq-core/src/main/java/org/hornetq/core/messagecounter/MessageCounter.java	2012-03-08 16:04:45 UTC (rev 12263)
@@ -83,14 +83,13 @@
    // Constructors --------------------------------------------------
 
    /**
-    *    Constructor
-    *
-    * @param name             destination name
-    * @param subscription     subscription name
-    * @param queue            internal queue object
-    * @param topic            topic destination flag
-    * @param durable          durable subsciption flag
-    * @param daycountmax      max message history day count
+    * Constructor
+    * @param name destination name
+    * @param subscription subscription name
+    * @param serverQueue internal queue object
+    * @param topic topic destination flag
+    * @param durable durable subscription flag
+    * @param daycountmax max message history day count
     */
    public MessageCounter(final String name,
                          final String subscription,

Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ServerSessionImpl.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ServerSessionImpl.java	2012-03-08 10:49:15 UTC (rev 12262)
+++ trunk/hornetq-core/src/main/java/org/hornetq/core/server/impl/ServerSessionImpl.java	2012-03-08 16:04:45 UTC (rev 12263)
@@ -76,10 +76,10 @@
 import org.hornetq.utils.json.JSONObject;
 
 /*
- * Session implementation 
- * 
- * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a> 
- * @author <a href="mailto:clebert.suconic at jboss.com">Clebert Suconic</a> 
+ * Session implementation
+ *
+ * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
+ * @author <a href="mailto:clebert.suconic at jboss.com">Clebert Suconic</a>
  * @author <a href="mailto:jmesnil at redhat.com">Jeff Mesnil</a>
  * @author <a href="mailto:andy.taylor at jboss.org>Andy Taylor</a>
  */
@@ -421,7 +421,7 @@
 
    /**
     * For test cases only
-    * @return
+    * @return RemotingConnection
     */
    public RemotingConnection getRemotingConnection()
    {
@@ -587,7 +587,7 @@
    public void acknowledge(final long consumerID, final long messageID) throws Exception
    {
       ServerConsumer consumer = consumers.get(consumerID);
-      
+
       if (consumer == null)
       {
          throw new HornetQException(HornetQException.ILLEGAL_STATE, "Consumer " + consumerID + " wasn't created on the server");
@@ -640,7 +640,7 @@
    }
 
    /**
-    * 
+    *
     * @param clientFailed If the client has failed, we can't decrease the delivery-counts, and the close may issue a rollback
     * @param considerLastMessageAsDelivered
     * @throws Exception
@@ -1090,7 +1090,7 @@
 
          return;
       }
-      
+
       consumer.receiveCredits(credits);
    }
 
@@ -1105,7 +1105,7 @@
       {
          log.trace("sendLarge::" + largeMsg);
       }
-      
+
       if (currentLargeMessage != null)
       {
          ServerSessionImpl.log.warn("Replacing incomplete LargeMessage with ID=" + currentLargeMessage.getMessageID());
@@ -1117,7 +1117,7 @@
    public void send(final ServerMessage message, final boolean direct) throws Exception
    {
       long id = storageManager.generateUniqueID();
-      
+
       SimpleString address = message.getAddress();
 
       message.setMessageID(id);
@@ -1326,7 +1326,7 @@
 
    // Public
    // ----------------------------------------------------------------------------
-   
+
    public void clearLargeMessage()
    {
       currentLargeMessage = null;



More information about the hornetq-commits mailing list