Skip to content

Commit 64461e0

Browse files
committed
renamed method
1 parent f59c7c5 commit 64461e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/services/project-changes-service.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export class ProjectChangesService implements IProjectChangesService {
244244
}
245245

246246
if (fileStats.isDirectory()) {
247-
if (this.isParentFolderChanged(dir)) {
247+
if (this.isFolderModified(dir)) {
248248
return true;
249249
}
250250

@@ -257,7 +257,7 @@ export class ProjectChangesService implements IProjectChangesService {
257257
return false;
258258
}
259259

260-
private isParentFolderChanged(parentDirPath: string): boolean {
260+
private isFolderModified(parentDirPath: string): boolean {
261261
const parentDirStat = this.$fs.getFsStats(parentDirPath);
262262
return parentDirStat.mtime.getTime() > this._outputProjectMtime ||
263263
parentDirStat.ctime.getTime() >= this._outputProjectCTime;

0 commit comments

Comments
 (0)