You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2012/09/18 21:11:39 UTC

svn commit: r1387326 - /activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Queue.scala

Author: chirino
Date: Tue Sep 18 19:11:38 2012
New Revision: 1387326

URL: http://svn.apache.org/viewvc?rev=1387326&view=rev
Log:
Fixes compiler warning.

Modified:
    activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Queue.scala

Modified: activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Queue.scala
URL: http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Queue.scala?rev=1387326&r1=1387325&r2=1387326&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Queue.scala (original)
+++ activemq/activemq-apollo/trunk/apollo-broker/src/main/scala/org/apache/activemq/apollo/broker/Queue.scala Tue Sep 18 19:11:38 2012
@@ -323,7 +323,7 @@ class Queue(val router: LocalRouter, val
     rc.binding = this.binding.dto
     rc.config = this.config
     if( max_enqueue_rate < Int.MaxValue ) {
-      rc.max_enqueue_rate = new Integer(max_enqueue_rate)
+      rc.max_enqueue_rate = new java.lang.Integer(max_enqueue_rate)
     }
     rc.metrics = this.get_queue_metrics
     rc.metrics.current_time = now