Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/run.ts')
-rw-r--r--editors/code/src/run.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/editors/code/src/run.ts b/editors/code/src/run.ts
index 100c0fe2d8..22e5eda682 100644
--- a/editors/code/src/run.ts
+++ b/editors/code/src/run.ts
@@ -89,14 +89,12 @@ export async function selectRunnable(
export class RunnableQuickPick implements vscode.QuickPickItem {
public label: string;
- public cargoWorkspaceRoot?: string;
public description?: string | undefined;
public detail?: string | undefined;
public picked?: boolean | undefined;
constructor(public runnable: ra.Runnable) {
this.label = runnable.label;
- this.cargoWorkspaceRoot = runnable.args.workspaceRoot;
}
}