Remove all remaining new keywords from Buffer.alloc(s)
This commit is contained in:
parent
8080cd353b
commit
79bbe5a38d
2 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ if (config.compression) {
|
||||||
} else consoleHelper.printWarn("Gzip Compression is disabled!");
|
} else consoleHelper.printWarn("Gzip Compression is disabled!");
|
||||||
|
|
||||||
app.use((req, res) => {
|
app.use((req, res) => {
|
||||||
req.packet = new Buffer.alloc(0);
|
req.packet = Buffer.alloc(0);
|
||||||
req.on("data", (chunk) => req.packet = Buffer.concat([req.packet, chunk], req.packet.length + chunk.length));
|
req.on("data", (chunk) => req.packet = Buffer.concat([req.packet, chunk], req.packet.length + chunk.length));
|
||||||
req.on("end", () => {
|
req.on("end", () => {
|
||||||
switch (req.method) {
|
switch (req.method) {
|
||||||
|
|
|
@ -6,7 +6,7 @@ module.exports = class {
|
||||||
this.username = username;
|
this.username = username;
|
||||||
this.uuid = uuid;
|
this.uuid = uuid;
|
||||||
this.connectTime = connectTime;
|
this.connectTime = connectTime;
|
||||||
this.queue = new Buffer.alloc(0);
|
this.queue = Buffer.alloc(0);
|
||||||
|
|
||||||
// Binato specific
|
// Binato specific
|
||||||
this.rankingMode = 0;
|
this.rankingMode = 0;
|
||||||
|
@ -130,6 +130,6 @@ module.exports = class {
|
||||||
|
|
||||||
// Clears out the user's queue
|
// Clears out the user's queue
|
||||||
clearQueue() {
|
clearQueue() {
|
||||||
this.queue = new Buffer.alloc(0);
|
this.queue = Buffer.alloc(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue