Skip to content

Commit

Permalink
Add whitespace in TemplateContentLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
h3xds1nz committed Jan 30, 2025
1 parent 37c8103 commit 2fe5edf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

Expand All @@ -22,7 +22,7 @@ private static T RequireService<T>(IServiceProvider provider) where T : class
T result = provider.GetService(typeof(T)) as T;
if (result == null)
{
throw new InvalidOperationException(SR.Format(SR.DeferringLoaderNoContext,nameof(TemplateContentLoader), typeof(T).Name));
throw new InvalidOperationException(SR.Format(SR.DeferringLoaderNoContext, nameof(TemplateContentLoader), typeof(T).Name));
}
return result;
}
Expand Down

0 comments on commit 2fe5edf

Please sign in to comment.