Clean up imports to make Intellij code analysis happy

This commit is contained in:
mmorrison 2019-01-06 18:52:03 -06:00
parent 68ee06ef11
commit a054557f10
40 changed files with 139 additions and 57 deletions

View file

@ -1,4 +1,5 @@
class HexUtil {
/** @param {Buffer} buffer */
static debugDump(buffer) {
let hexLine = '';
let chrLine = '';

View file

@ -101,5 +101,7 @@ class Gamedig {
}
}
Gamedig.debug = false;
Gamedig.isCommandLine = false;
module.exports = Gamedig;

View file

@ -126,6 +126,7 @@ class Reader {
return r;
}
/** @returns Buffer */
part(bytes) {
let r;
if(this.remaining() >= bytes) {