Skip to content
Snippets Groups Projects
Commit d597fc12 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add missing method docstring.

parent 8455364b
No related branches found
No related tags found
No related merge requests found
......@@ -214,6 +214,10 @@ namespace ATXCommon.Serializables
return config;
}
/// <summary>
/// Validate the configuration, throwing exceptions on invalid parameters.
/// </summary>
private static void ValidateConfiguration(ServiceConfig c) {
if (string.IsNullOrEmpty(c.SourceDrive) ||
string.IsNullOrEmpty(c.IncomingDirectory) ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment