Author: arnaudsimon
Date: Mon Jul 23 06:40:31 2007
New Revision: 558724

URL: http://svn.apache.org/viewvc?view=rev&rev=558724
Log:
Removed the inline option (this was a 0.9 parameter) 

Modified:
    
incubator/qpid/trunk/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java

Modified: 
incubator/qpid/trunk/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java
URL: 
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java?view=diff&rev=558724&r1=558723&r2=558724
==============================================================================
--- 
incubator/qpid/trunk/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java
 (original)
+++ 
incubator/qpid/trunk/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java
 Mon Jul 23 06:40:31 2007
@@ -22,7 +22,7 @@
 
 /**
  * A sender is used to send message to its queue.
- *
+ * <p/>
  * Created by Arnaud Simon
  * Date: 22-Jul-2007
  * Time: 09:41:58
@@ -34,11 +34,11 @@
      * Sends a message to this sender queue.
      *
      * @param message The message to be sent
-     * @param inline  //TODO
-     * @throws QpidException If the sender fails to send the message due to 
some error.
-     * @throws IllegalStateException If this sender was closed or its session 
suspended. 
+     * @throws QpidException         If the sender fails to send the message 
due to some error.
+     * @throws IllegalStateException If this sender was closed or its session 
suspended.
      */
-     public void send(Message message, boolean inline) throws
-                                                       QpidException,
-                                                       IllegalStateException;
+    public void send(Message message)
+            throws
+            QpidException,
+            IllegalStateException;
 }


Reply via email to