File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- QueueEmpty = exports . QueueEmpty = function ( ) {
1
+ var QueueEmpty = exports . QueueEmpty = function ( ) {
2
2
this . name = "QueueEmpty" ;
3
3
this . message = "Queue is Empty" ;
4
4
} ;
Original file line number Diff line number Diff line change 1
1
var exceptions = require ( './stomp-exceptions' ) ;
2
2
var sys = require ( 'util' ) ;
3
3
4
- StompLogging = exports . StompLogging = function ( should_debug ) {
4
+ var StompLogging = exports . StompLogging = function ( should_debug ) {
5
5
this . should_debug = should_debug ;
6
6
} ;
7
7
@@ -26,7 +26,7 @@ StompLogging.prototype.die = function(message) {
26
26
this . error ( message , true ) ;
27
27
} ;
28
28
29
- StompUtils = exports . StompUtils = function ( ) {
29
+ var StompUtils = exports . StompUtils = function ( ) {
30
30
this . available_utils = [ ] ;
31
31
} ;
32
32
You can’t perform that action at this time.
0 commit comments