Reformat files with new linter
All changes should be whitespace, and were done using npm run-script
lint.
Change-Id: I943c6b435c5c872841af5affc1e89910468b5ca6
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/src/utilities/NBDServer.js b/src/utilities/NBDServer.js
index 57c79ce..1f6f88f 100644
--- a/src/utilities/NBDServer.js
+++ b/src/utilities/NBDServer.js
@@ -63,7 +63,7 @@
};
this._on_ws_close = function (ev) {
console.log(
- `${endpoint} closed with code: ${ev.code} + reason: ${ev.reason}`
+ `${endpoint} closed with code: ${ev.code} + reason: ${ev.reason}`,
);
console.log(JSON.stringify(ev));
this.socketClosed(ev.code);
@@ -96,7 +96,7 @@
var consumed = handler(this.msgbuf);
if (consumed < 0) {
console.log(
- 'handler[state=' + this.state + '] returned error ' + consumed
+ 'handler[state=' + this.state + '] returned error ' + consumed,
);
this.stop();
break;