Author: rgodfrey
Date: Wed Apr 16 04:32:03 2008
New Revision: 648670

URL: http://svn.apache.org/viewvc?rev=648670&view=rev
Log:
QPID-932 : Remove references to unusued constructor argument "browsedAcks" of 
NonTransactionalContext

Modified:
    
incubator/qpid/branches/M2.1/java/broker/src/main/java/org/apache/qpid/server/AMQChannel.java

Modified: 
incubator/qpid/branches/M2.1/java/broker/src/main/java/org/apache/qpid/server/AMQChannel.java
URL: 
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/java/broker/src/main/java/org/apache/qpid/server/AMQChannel.java?rev=648670&r1=648669&r2=648670&view=diff
==============================================================================
--- 
incubator/qpid/branches/M2.1/java/broker/src/main/java/org/apache/qpid/server/AMQChannel.java
 (original)
+++ 
incubator/qpid/branches/M2.1/java/broker/src/main/java/org/apache/qpid/server/AMQChannel.java
 Wed Apr 16 04:32:03 2008
@@ -134,7 +134,7 @@
         _messageStore = messageStore;
 
         // by default the session is non-transactional
-        _txnContext = new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages, _browsedAcks);
+        _txnContext = new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages);
     }
 
     /** Sets this channel to be part of a local transaction */
@@ -508,7 +508,7 @@
                 // if (_nonTransactedContext == null)
                 {
                     _nonTransactedContext =
-                            new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages, _browsedAcks);
+                            new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages);
                 }
 
                 deliveryContext = _nonTransactedContext;
@@ -571,7 +571,7 @@
                 // if (_nonTransactedContext == null)
                 {
                     _nonTransactedContext =
-                            new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages, _browsedAcks);
+                            new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages);
                 }
 
                 deliveryContext = _nonTransactedContext;
@@ -798,7 +798,7 @@
             if (_nonTransactedContext == null)
             {
                 _nonTransactedContext =
-                        new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages, _browsedAcks);
+                        new NonTransactionalContext(_messageStore, 
_storeContext, this, _returnMessages);
             }
 
             deliveryContext = _nonTransactedContext;


Reply via email to