mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-18 09:35:50 +00:00
Clean up imports to make Intellij code analysis happy
This commit is contained in:
parent
68ee06ef11
commit
a054557f10
40 changed files with 139 additions and 57 deletions
|
|
@ -1,6 +1,7 @@
|
|||
const async = require('async');
|
||||
const async = require('async'),
|
||||
Core = require('./core');
|
||||
|
||||
class Gamespy3 extends require('./core') {
|
||||
class Gamespy3 extends Core {
|
||||
constructor() {
|
||||
super();
|
||||
this.sessionId = 1;
|
||||
|
|
@ -12,7 +13,10 @@ class Gamespy3 extends require('./core') {
|
|||
}
|
||||
|
||||
run(state) {
|
||||
let challenge,packets;
|
||||
let challenge;
|
||||
|
||||
/** @type Buffer[] */
|
||||
let packets;
|
||||
|
||||
async.series([
|
||||
(c) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue