File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
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
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ function Stomp(args) {
251
251
this . debug = args [ 'debug' ] ;
252
252
this . login = args [ 'login' ] || null ;
253
253
this . passcode = args [ 'passcode' ] || null ;
254
- this . log = new StompLogging ( this . debug ) ;
254
+ this . log = new stomp_utils . StompLogging ( this . debug ) ;
255
255
this . _subscribed_to = { } ;
256
256
this . session = null ;
257
257
this . ssl = args [ 'ssl' ] ? true : false ;
You can’t perform that action at this time.
0 commit comments