This commit is contained in:
Dennis Eichhorn 2016-06-26 16:22:55 +02:00
parent 6a4b7d70fb
commit bead7c077d

View File

@ -41,7 +41,7 @@
*/ */
jsOMS.Message.Request.RequestManager.prototype.addGroup = function (id, group) jsOMS.Message.Request.RequestManager.prototype.addGroup = function (id, group)
{ {
if (typeof this.groups[group] == 'undefined') { if (typeof this.groups[group] === 'undefined') {
this.groups[group] = {}; this.groups[group] = {};
} }
@ -103,7 +103,7 @@
* Create callback for request pool. * Create callback for request pool.
* *
* @return {string} group Group id * @return {string} group Group id
* @return {callback} callback Callback * @return {function} callback Callback
* *
* @method * @method
* *