Skip to content
This repository was archived by the owner on Aug 9, 2025. It is now read-only.

Commit a142b4e

Browse files
committed
fix for dodgy tabbing that didn't show up until I committed
1 parent 704c91c commit a142b4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CPPCheckPlugin/AnalyzerCppcheck.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ public AnalyzerCppcheck()
2727
{
2828
DateTime fileModifiedDate = File.GetLastWriteTime(file);
2929

30-
if (fileModifiedDate.AddMinutes(60) < DateTime.Now)
30+
if (fileModifiedDate.AddMinutes(60) < DateTime.Now)
3131
{
32-
// File hasn't been written to in the last 60 mins, so it must be
33-
// from an earlier instance which didn't exit gracefully.
32+
// File hasn't been written to in the last 60 mins, so it must be
33+
// from an earlier instance which didn't exit gracefully.
3434
File.Delete(file);
3535
}
3636
}

0 commit comments

Comments
 (0)