JSLint: use ===.
This commit is contained in:
parent
a6a1ad3d0a
commit
b925c96781
|
@ -453,7 +453,7 @@ function decode_message(data) {
|
||||||
|
|
||||||
function handle_message() {
|
function handle_message() {
|
||||||
//Util.Debug("RQ.slice(0,20): " + RQ.slice(0,20) + " (" + RQ.length + ")");
|
//Util.Debug("RQ.slice(0,20): " + RQ.slice(0,20) + " (" + RQ.length + ")");
|
||||||
if (RQ.length == 0) {
|
if (RQ.length === 0) {
|
||||||
Util.Warn("handle_message called on empty receive queue");
|
Util.Warn("handle_message called on empty receive queue");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue