Skip to content

Commit 861c2f4

Browse files
committed
cleanup
1 parent 783fabf commit 861c2f4

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/web/clients/web-usb-client.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// <reference types="@types/dom-serial" />
21
import * as vscode from "vscode";
32

43
import { BaseClient } from "../../clients/base-client";
@@ -110,17 +109,5 @@ export class WebUsbClient extends BaseClient {
110109
this._reader.releaseLock();
111110
}
112111
}
113-
// this._reader = this._port?.readable.pipeThrough(new TransformStream(new MessageTransformer())).getReader();
114-
// while (this._reader) {
115-
// const { done, value } = await this._reader.read();
116-
117-
// if (value) {
118-
// this.onData(value);
119-
// }
120-
121-
// if (done) {
122-
// break;
123-
// }
124-
// }
125112
}
126113
}

src/web/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import * as mpy from "@pybricks/mpy-cross-v6";
32

43
import * as vscode from "vscode";
@@ -59,7 +58,6 @@ export async function activate(context: vscode.ExtensionContext) {
5958
return;
6059
}
6160

62-
6361
await vscode.window.withProgress(
6462
{
6563
location: vscode.ProgressLocation.Notification,

0 commit comments

Comments
 (0)