Skip to content

Commit 6ee42ad

Browse files
Style 👮
1 parent 7417255 commit 6ee42ad

File tree

4 files changed

+21
-41
lines changed

4 files changed

+21
-41
lines changed

src/UmbracoFileSystemProviders.Azure/Helpers/ILogHelper.cs

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
// --------------------------------------------------------------------------------------------------------------------
2-
// <copyright file="ILogHelper.cs" company="James Jackson-South">
3-
// Copyright (c) James Jackson-South and contributors.
4-
// Licensed under the Apache License, Version 2.0.
1+
// <copyright file="ILogHelper.cs" company="James Jackson-South, Jeavon Leopold, and contributors">
2+
// Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved.
3+
// Licensed under the Apache License, Version 2.0.
54
// </copyright>
6-
// <summary>
7-
// Provides methods for logging messages within the application.
8-
// </summary>
9-
// --------------------------------------------------------------------------------------------------------------------
105

116
namespace Our.Umbraco.FileSystemProviders.Azure
127
{
@@ -18,8 +13,8 @@ namespace Our.Umbraco.FileSystemProviders.Azure
1813
public interface ILogHelper
1914
{
2015
/// <summary>
21-
/// Traces a message, only generating the message if tracing is actually enabled.
22-
/// Use this method to avoid calling any long-running methods such as "ToDebugString" if
16+
/// Traces a message, only generating the message if tracing is actually enabled.
17+
/// Use this method to avoid calling any long-running methods such as "ToDebugString" if
2318
/// logging is disabled.
2419
/// </summary>
2520
/// <typeparam name="T">The type of class the message is associated with.</typeparam>
@@ -34,15 +29,15 @@ public interface ILogHelper
3429
void Info(Type callingType, Func<string> generateMessage);
3530

3631
/// <summary>
37-
/// Traces a message, only generating the message if tracing is actually enabled.
32+
/// Traces a message, only generating the message if tracing is actually enabled.
3833
/// </summary>
3934
/// <typeparam name="T">The type of class the message is associated with.</typeparam>
4035
/// <param name="generateMessageFormat">The generate message format.</param>
4136
/// <param name="formatItems">The format items.</param>
4237
void Info<T>(string generateMessageFormat, params Func<object>[] formatItems);
43-
38+
4439
/// <summary>
45-
/// Traces a message, only generating the message if tracing is actually enabled.
40+
/// Traces a message, only generating the message if tracing is actually enabled.
4641
/// </summary>
4742
/// <param name="type">The calling <see cref="Type"/>.</param>
4843
/// <param name="generateMessageFormat">The generate message format.</param>

src/UmbracoFileSystemProviders.Azure/Helpers/IMimeTypeResolver.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
// --------------------------------------------------------------------------------------------------------------------
2-
// <copyright file="IMimeTypeResolver.cs" company="James Jackson-South">
3-
// Copyright (c) James Jackson-South and contributors.
4-
// Licensed under the Apache License, Version 2.0.
1+
// <copyright file="IMimeTypeResolver.cs" company="James Jackson-South, Jeavon Leopold, and contributors">
2+
// Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved.
3+
// Licensed under the Apache License, Version 2.0.
54
// </copyright>
6-
// <summary>
7-
// Provides methods for resolving MIME types.
8-
// </summary>
9-
// --------------------------------------------------------------------------------------------------------------------
105

116
namespace Our.Umbraco.FileSystemProviders.Azure
127
{

src/UmbracoFileSystemProviders.Azure/Helpers/MimeTypeResolver.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
// --------------------------------------------------------------------------------------------------------------------
2-
// <copyright file="MimeTypeResolver.cs" company="James Jackson-South">
3-
// Copyright (c) James Jackson-South and contributors.
4-
// Licensed under the Apache License, Version 2.0.
1+
// <copyright file="MimeTypeResolver.cs" company="James Jackson-South, Jeavon Leopold, and contributors">
2+
// Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved.
3+
// Licensed under the Apache License, Version 2.0.
54
// </copyright>
6-
// <summary>
7-
// The default MIME type resolver.
8-
// </summary>
9-
// --------------------------------------------------------------------------------------------------------------------
105

116
namespace Our.Umbraco.FileSystemProviders.Azure
127
{

src/UmbracoFileSystemProviders.Azure/Helpers/WrappedLogHelper.cs

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
// --------------------------------------------------------------------------------------------------------------------
2-
// <copyright file="WrappedLogHelper.cs" company="James Jackson-South">
3-
// Copyright (c) James Jackson-South and contributors.
4-
// Licensed under the Apache License, Version 2.0.
1+
// <copyright file="WrappedLogHelper.cs" company="James Jackson-South, Jeavon Leopold, and contributors">
2+
// Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved.
3+
// Licensed under the Apache License, Version 2.0.
54
// </copyright>
6-
// <summary>
7-
// Provides a <see cref="LogHelper" /> wrapper for logging messages within the application.
8-
// </summary>
9-
// --------------------------------------------------------------------------------------------------------------------
105

116
namespace Our.Umbraco.FileSystemProviders.Azure
127
{
@@ -20,8 +15,8 @@ namespace Our.Umbraco.FileSystemProviders.Azure
2015
public class WrappedLogHelper : ILogHelper
2116
{
2217
/// <summary>
23-
/// Traces a message, only generating the message if tracing is actually enabled.
24-
/// Use this method to avoid calling any long-running methods such as "ToDebugString" if
18+
/// Traces a message, only generating the message if tracing is actually enabled.
19+
/// Use this method to avoid calling any long-running methods such as "ToDebugString" if
2520
/// logging is disabled.
2621
/// </summary>
2722
/// <typeparam name="T">The type of class the message is associated with.</typeparam>
@@ -42,7 +37,7 @@ public void Info(Type callingType, Func<string> generateMessage)
4237
}
4338

4439
/// <summary>
45-
/// Traces a message, only generating the message if tracing is actually enabled.
40+
/// Traces a message, only generating the message if tracing is actually enabled.
4641
/// </summary>
4742
/// <typeparam name="T">The type of class the message is associated with.</typeparam>
4843
/// <param name="generateMessageFormat">The generate message format.</param>
@@ -53,7 +48,7 @@ public void Info<T>(string generateMessageFormat, params Func<object>[] formatIt
5348
}
5449

5550
/// <summary>
56-
/// Traces a message, only generating the message if tracing is actually enabled.
51+
/// Traces a message, only generating the message if tracing is actually enabled.
5752
/// </summary>
5853
/// <param name="type">The calling <see cref="Type"/>.</param>
5954
/// <param name="generateMessageFormat">The generate message format.</param>

0 commit comments

Comments
 (0)