Skip to content

Commit 4e87c65

Browse files
Drop a dead comment.
1 parent 7610434 commit 4e87c65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client/common/platform/fileSystem.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,14 @@ export class TempFileSystem {
133133
}
134134

135135
// This is the parts of the vscode.workspace.fs API that we use here.
136+
// See: https://code.visualstudio.com/api/references/vscode-api#FileSystem
137+
// Note that we have used all the API functions *except* "rename()".
136138
interface INewAPI {
137139
copy(source: vscode.Uri, target: vscode.Uri, options?: {overwrite: boolean}): Thenable<void>;
138140
createDirectory(uri: vscode.Uri): Thenable<void>;
139141
delete(uri: vscode.Uri, options?: {recursive: boolean; useTrash: boolean}): Thenable<void>;
140142
readDirectory(uri: vscode.Uri): Thenable<[string, FileType][]>;
141143
readFile(uri: vscode.Uri): Thenable<Uint8Array>;
142-
//rename(source: vscode.Uri, target: vscode.Uri, options?: {overwrite: boolean}): Thenable<void>;
143144
stat(uri: vscode.Uri): Thenable<FileStat>;
144145
writeFile(uri: vscode.Uri, content: Uint8Array): Thenable<void>;
145146
}

0 commit comments

Comments
 (0)