You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kw...@apache.org on 2016/09/13 12:48:48 UTC

svn commit: r1760534 - /qpid/java/trunk/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Queue.js

Author: kwall
Date: Tue Sep 13 12:48:48 2016
New Revision: 1760534

URL: http://svn.apache.org/viewvc?rev=1760534&view=rev
Log:
QPID-7380: [Java Broker, WMC] Add missing javascript statement terminating semi-colon

Modified:
    qpid/java/trunk/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Queue.js

Modified: qpid/java/trunk/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Queue.js
URL: http://svn.apache.org/viewvc/qpid/java/trunk/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Queue.js?rev=1760534&r1=1760533&r2=1760534&view=diff
==============================================================================
--- qpid/java/trunk/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Queue.js (original)
+++ qpid/java/trunk/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Queue.js Tue Sep 13 12:48:48 2016
@@ -417,7 +417,7 @@ define(["dojo/_base/declare",
                         "holdOnPublishEnabled",
                         "oldestMessageAge"]);
 
-            that.queueData = {}
+            that.queueData = {};
             that.bindingsGrid = new UpdatableStore([], findNode("bindings"), [{
                 name: "Exchange",
                 field: "exchange",
@@ -655,12 +655,12 @@ define(["dojo/_base/declare",
                 this.management.remove(this.modelObj)
                     .then(function (data)
                     {
-                        that.contentPane.onClose()
+                        that.contentPane.onClose();
                         that.controller.tabContainer.removeChild(that.contentPane);
                         that.contentPane.destroyRecursive();
                     }, util.xhrErrorHandler);
             }
-        }
+        };
 
         return Queue;
     });



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org