Skip to content
This repository was archived by the owner on Nov 28, 2018. It is now read-only.

Commit 8dfbe49

Browse files
committed
Consistent code is consistent.
1 parent c4b49e1 commit 8dfbe49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stomp-utils.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ StompQueue = exports.StompQueue = function() {
1919

2020
StompQueue.prototype.get_size = function() {
2121
return this.queue.length - this.queue_space;
22-
}
22+
};
2323

2424
StompQueue.prototype.is_empty = function() {
2525
return (this.queue.length == 0);
26-
}
26+
};
2727

2828
StompQueue.prototype.put = function(item) {
2929
this.queue.push(item);
30-
}
30+
};
3131

3232
StompQueue.prototype.get = function() {
3333
var item = undefined;

0 commit comments

Comments
 (0)