From 447b1df694885cc03d41a91a62f0dbf7f1aa4d58 Mon Sep 17 00:00:00 2001 From: Ignacio Olaciregui Date: Sat, 3 Nov 2018 09:33:54 -0300 Subject: [PATCH] Fix linting error --- Libraries/WebSocket/WebSocket.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Libraries/WebSocket/WebSocket.js b/Libraries/WebSocket/WebSocket.js index 8f317deb583f31..cd32d2636e7c62 100644 --- a/Libraries/WebSocket/WebSocket.js +++ b/Libraries/WebSocket/WebSocket.js @@ -175,10 +175,6 @@ class WebSocket extends EventTarget(...WEBSOCKET_EVENTS) { this._binaryType = binaryType; } - get binaryType(): ?BinaryType { - return this._binaryType; - } - close(code?: number, reason?: string): void { if (this.readyState === this.CLOSING || this.readyState === this.CLOSED) { return;