We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aeab47 commit 8ab23f8Copy full SHA for 8ab23f8
lib/services/project-changes-info.ts
@@ -102,7 +102,7 @@ export class ProjectChangesInfo {
102
if (fileStats.mtime.getTime() > mtime) {
103
return true;
104
}
105
- let lFileStats = this.$fs.getLsStats(filePath).wait();
+ let lFileStats = this.$fs.getLsStats(filePath);
106
if (lFileStats.mtime.getTime() > mtime) {
107
108
test/stubs.ts
@@ -122,7 +122,7 @@ export class FileSystemStub implements IFileSystem {
122
return undefined;
123
124
125
- getLsStats(path: string): IFuture<IFsStats> {
+ getLsStats(path: string): IFsStats {
126
127
128
0 commit comments