clean up code
Pull request / build (pull_request) Successful in 36s

This commit is contained in:
2026-08-12 18:25:28 +05:00
parent 87266e6c13
commit 646d7edc0c
6 changed files with 10 additions and 20 deletions
+2 -5
View File
@@ -71,9 +71,6 @@ public sealed class SettingsService : IDisposable
_saveTimer.Tick += OnSaveTimerTick;
}
/// <summary>The file being read. The agent's diagnostics report it.</summary>
public string FilePath => _filePath;
/// <summary>
/// Reads the settings from disk or returns the default values.
/// </summary>
@@ -154,8 +151,8 @@ public sealed class SettingsService : IDisposable
/// </summary>
/// <remarks>
/// The file is written beside its destination and moved onto it, which on one
/// volume is a single step. That way a reader never meets a half-written file —
/// and there is a reader, in another process, watching this very file.
/// volume is a single step. That way the agent, which is told to re-read the moment
/// this returns, never meets a half-written file.
/// </remarks>
public void Save()
{