Skip to content

Commit cd7f0dc

Browse files
committed
CSHARP-5610: Cleanup unnecessary whitespaces in the codebase
1 parent e62da2b commit cd7f0dc

File tree

69 files changed

+136
-136
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+136
-136
lines changed

benchmarks/MongoDB.Driver.Benchmarks/BenchmarkResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public BenchmarkResult(BenchmarkReport benchmarkReport)
4141
Name = Categories.Contains(DriverBenchmarkCategory.BulkWriteBench)
4242
? benchmarkReport.BenchmarkCase.Descriptor.WorkloadMethod.Name
4343
: benchmarkReport.BenchmarkCase.Descriptor.Type.Name;
44-
44+
4545
dataSetSize = (int)benchmarkReport.BenchmarkCase.Parameters["BenchmarkDataSetSize"];
4646
}
4747

benchmarks/MongoDB.Driver.Benchmarks/DriverBenchmarkCategory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static class DriverBenchmarkCategory
2626
public const string ReadBench = "ReadBench";
2727
public const string SingleBench = "SingleBench";
2828
public const string WriteBench = "WriteBench";
29-
29+
3030
// not included in AllCategories as it's not part of the benchmarking spec
3131
public const string BulkWriteBench = "BulkWriteBench";
3232

benchmarks/MongoDB.Driver.Benchmarks/MultiDoc/BulkWriteMixedOpsBenchmark.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ public void Setup()
4848
for (var i = 0; i < 10000; i++)
4949
{
5050
var collectionName = __collectionNamespaces[i % __collectionNamespaces.Length];
51-
51+
5252
_clientBulkWriteMixedOpsModels.Add(new BulkWriteInsertOneModel<BsonDocument>(collectionName, smallDocument.DeepClone().AsBsonDocument));
5353
_clientBulkWriteMixedOpsModels.Add(new BulkWriteReplaceOneModel<BsonDocument>(collectionName, FilterDefinition<BsonDocument>.Empty, smallDocument.DeepClone().AsBsonDocument));
5454
_clientBulkWriteMixedOpsModels.Add(new BulkWriteDeleteOneModel<BsonDocument>(collectionName, FilterDefinition<BsonDocument>.Empty));
55-
55+
5656
_collectionBulkWriteMixedOpsModels.Add(new InsertOneModel<BsonDocument>(smallDocument.DeepClone().AsBsonDocument));
5757
_collectionBulkWriteMixedOpsModels.Add(new ReplaceOneModel<BsonDocument>(FilterDefinition<BsonDocument>.Empty, smallDocument.DeepClone().AsBsonDocument));
5858
_collectionBulkWriteMixedOpsModels.Add(new DeleteOneModel<BsonDocument>(FilterDefinition<BsonDocument>.Empty));
@@ -63,13 +63,13 @@ public void Setup()
6363
public void BeforeTask()
6464
{
6565
_client.DropDatabase(MongoConfiguration.PerfTestDatabaseName);
66-
66+
6767
_database = _client.GetDatabase(MongoConfiguration.PerfTestDatabaseName);
6868
foreach (var collectionName in __collectionNamespaces)
6969
{
7070
_database.CreateCollection(collectionName.Split('.')[1]);
7171
}
72-
72+
7373
_collection = _database.GetCollection<BsonDocument>(MongoConfiguration.PerfTestCollectionName);
7474
}
7575

@@ -78,7 +78,7 @@ public void SmallDocCollectionBulkWriteMixedOpsBenchmark()
7878
{
7979
_collection.BulkWrite(_collectionBulkWriteMixedOpsModels, new());
8080
}
81-
81+
8282
[Benchmark]
8383
public void SmallDocClientBulkWriteMixedOpsBenchmark()
8484
{

benchmarks/MongoDB.Driver.Benchmarks/MultiDoc/LargeDocBulkInsertBenchmark.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class LargeDocBulkInsertBenchmark
3232
private BsonDocument[] _largeDocuments;
3333
private InsertOneModel<BsonDocument>[] _collectionBulkWriteInsertModels;
3434
private BulkWriteInsertOneModel<BsonDocument>[] _clientBulkWriteInsertModels;
35-
35+
3636
private static readonly CollectionNamespace __collectionNamespace =
3737
CollectionNamespace.FromFullName($"{MongoConfiguration.PerfTestDatabaseName}.{MongoConfiguration.PerfTestCollectionName}");
3838

@@ -63,13 +63,13 @@ public void InsertManyLargeBenchmark()
6363
{
6464
_collection.InsertMany(_largeDocuments, new());
6565
}
66-
66+
6767
[Benchmark]
6868
public void LargeDocCollectionBulkWriteInsertBenchmark()
6969
{
7070
_collection.BulkWrite(_collectionBulkWriteInsertModels, new());
7171
}
72-
72+
7373
[Benchmark]
7474
public void LargeDocClientBulkWriteInsertBenchmark()
7575
{

benchmarks/MongoDB.Driver.Benchmarks/MultiDoc/SmallDocBulkInsertBenchmark.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ public void InsertManySmallBenchmark()
6262
{
6363
_collection.InsertMany(_smallDocuments, new());
6464
}
65-
65+
6666
[Benchmark]
6767
public void SmallDocCollectionBulkWriteInsertBenchmark()
6868
{
6969
_collection.BulkWrite(_collectionBulkWriteInsertModels, new());
7070
}
71-
71+
7272
[Benchmark]
7373
public void SmallDocClientBulkWriteInsertBenchmark()
7474
{

src/MongoDB.Bson/Exceptions/DuplicateBsonMemberMapAttributeException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace MongoDB.Bson
2323
/// </summary>
2424
public class DuplicateBsonMemberMapAttributeException : BsonException
2525
{
26-
// constructors
26+
// constructors
2727
/// <summary>
2828
/// Initializes a new instance of the <see cref="DuplicateBsonMemberMapAttributeException" /> class.
2929
/// </summary>

src/MongoDB.Bson/IO/BsonBinaryReaderSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public UTF8Encoding Encoding
7676
}
7777

7878
/// <summary>
79-
/// Gets or sets whether to fix occurrences of the old binary subtype on input.
79+
/// Gets or sets whether to fix occurrences of the old binary subtype on input.
8080
/// </summary>
8181
public bool FixOldBinarySubTypeOnInput
8282
{
@@ -89,7 +89,7 @@ public bool FixOldBinarySubTypeOnInput
8989
}
9090

9191
/// <summary>
92-
/// Gets or sets whether to fix occurrences of the old representation of DateTime.MaxValue on input.
92+
/// Gets or sets whether to fix occurrences of the old representation of DateTime.MaxValue on input.
9393
/// </summary>
9494
public bool FixOldDateTimeMaxValueOnInput
9595
{

src/MongoDB.Bson/IO/ByteBufferStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ public override void WriteCString(string value)
572572
{
573573
// Compare to 128 to preserve original behavior
574574
const int maxLengthToUseCStringUtf8EncodingWith = 128;
575-
575+
576576
if (maxLength <= maxLengthToUseCStringUtf8EncodingWith)
577577
{
578578
using var rentedBuffer = ThreadStaticBuffer.RentBuffer(maxLengthToUseCStringUtf8EncodingWith);

src/MongoDB.Bson/IO/InputBufferChunkSource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public int MaxUnpooledChunkSize
132132
get { return _maxUnpooledChunkSize; }
133133
}
134134

135-
// methods
135+
// methods
136136
/// <inheritdoc/>
137137
public void Dispose()
138138
{

src/MongoDB.Bson/ObjectModel/MaterializedOnDemandBsonDocument.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public override IEnumerator<BsonElement> GetEnumerator()
407407
/// Returns a hash code for this instance.
408408
/// </summary>
409409
/// <returns>
410-
/// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
410+
/// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
411411
/// </returns>
412412
public override int GetHashCode()
413413
{

src/MongoDB.Bson/Serialization/BinaryVectorReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ TExpectedItem[] AsTypedArrayOrThrow<TExpectedItem>()
111111
return result;
112112
}
113113
}
114-
114+
115115
private static float[] ReadSinglesArrayLittleEndian(ReadOnlySpan<byte> span)
116116
{
117117
if ((span.Length & 3) != 0)

src/MongoDB.Bson/Serialization/BinaryVectorWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static byte[] WriteToBytes<TItem>(ReadOnlySpan<TItem> vectorData, BinaryV
3939
switch (binaryVectorDataType)
4040
{
4141
case BinaryVectorDataType.Float32:
42-
var length = vectorData.Length * 4;
42+
var length = vectorData.Length * 4;
4343
var result = new byte[2 + length];
4444
result[0] = (byte)binaryVectorDataType;
4545
result[1] = padding;

src/MongoDB.Bson/Serialization/BsonSerializationContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private BsonSerializationContext(
3838

3939
// public properties
4040
/// <summary>
41-
/// Gets a function that, when executed, will indicate whether the type
41+
/// Gets a function that, when executed, will indicate whether the type
4242
/// is a dynamic type.
4343
/// </summary>
4444
public Func<Type, bool> IsDynamicType

src/MongoDB.Bson/Serialization/Conventions/ConventionRegistry.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ public static void Register(string name, IConventionPack conventions, Func<Type,
116116
/// Removes the conventions specified by the given name.
117117
/// </summary>
118118
/// <param name="name">The name.</param>
119-
/// <remarks>Removing a convention allows the removal of the special __defaults__ conventions
120-
/// and the __attributes__ conventions for those who want to completely customize the
119+
/// <remarks>Removing a convention allows the removal of the special __defaults__ conventions
120+
/// and the __attributes__ conventions for those who want to completely customize the
121121
/// experience.</remarks>
122122
public static void Remove(string name)
123123
{

src/MongoDB.Bson/Serialization/Conventions/ImmutableTypeClassMapConvention.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ private bool PropertyMatchesSomeCreatorParameter(BsonClassMap classMap, Property
130130
var constructors = GetUsableConstructors(classTypeInfo);
131131
foreach (var constructorInfo in constructors)
132132
{
133-
if (classTypeInfo.IsAbstract ||
133+
if (classTypeInfo.IsAbstract ||
134134
constructorInfo.IsFamily || // protected
135135
constructorInfo.IsFamilyOrAssembly) // protected internal
136136
{

src/MongoDB.Bson/Serialization/IdGenerators/AscendingGuidGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace MongoDB.Bson.Serialization.IdGenerators
2121
{
2222
/// <summary>
23-
/// A GUID generator that generates GUIDs in ascending order. To enable
23+
/// A GUID generator that generates GUIDs in ascending order. To enable
2424
/// an index to make use of the ascending nature make sure to use
2525
/// <see cref="GuidRepresentation.Standard">GuidRepresentation.Standard</see>
2626
/// as the storage representation.
@@ -62,7 +62,7 @@ public static AscendingGuidGenerator Instance
6262
/// Generates an ascending Guid for a document. Consecutive invocations
6363
/// should generate Guids that are ascending from a MongoDB perspective
6464
/// </summary>
65-
/// <param name="container">The container of the document (will be a
65+
/// <param name="container">The container of the document (will be a
6666
/// MongoCollection when called from the driver). </param>
6767
/// <param name="document">The document it was generated for.</param>
6868
/// <returns>A Guid.</returns>

src/MongoDB.Bson/Serialization/Serializers/ExpandoObjectSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace MongoDB.Bson.Serialization.Serializers
2222
/// Serializer for <see cref="ExpandoObject"/>.
2323
/// </summary>
2424
/// <remarks>
25-
/// The use of <see cref="ExpandoObject"/> will serialize any <see cref="List{Object}"/> without type information.
25+
/// The use of <see cref="ExpandoObject"/> will serialize any <see cref="List{Object}"/> without type information.
2626
/// To get the best experience out of using an <see cref="ExpandoObject"/>, any member wanting to be used
2727
/// as an array should use <see cref="List{Object}"/>.
2828
/// </remarks>

src/MongoDB.Bson/Serialization/Serializers/IEnumerableDeserializingAsCollectionSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public IEnumerableDeserializingAsCollectionSerializer<TIEnumerable, TItem, TColl
179179
}
180180

181181
// explicit interface implementations
182-
IBsonSerializer IChildSerializerConfigurable.ChildSerializer => ItemSerializer;
182+
IBsonSerializer IChildSerializerConfigurable.ChildSerializer => ItemSerializer;
183183

184184
IBsonSerializer IChildSerializerConfigurable.WithChildSerializer(IBsonSerializer childSerializer)
185185
=> WithItemSerializer((IBsonSerializer<TItem>)childSerializer);

src/MongoDB.Driver/Authentication/Gssapi/Sspi/EncryptQualityOfProtection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace MongoDB.Driver.Authentication.Gssapi.Sspi
1919
/// Flags for EncryptMessage.
2020
/// </summary>
2121
/// <remarks>
22-
/// See the fQOP parameter at
22+
/// See the fQOP parameter at
2323
/// http://msdn.microsoft.com/en-us/library/windows/desktop/aa375378(v=vs.85).aspx.
2424
/// </remarks>
2525
internal enum EncryptQualityOfProtection : uint

src/MongoDB.Driver/Authentication/SaslMapParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace MongoDB.Driver.Authentication
2424
/// "SCRAM is a SASL mechanism whose client response and server challenge
2525
/// messages are text-based messages containing one or more attribute-
2626
/// value pairs separated by commas. Each attribute has a one-letter
27-
/// name."
27+
/// name."
2828
/// </summary>
2929
internal static class SaslMapParser
3030
{

src/MongoDB.Driver/Authentication/SaslPrepHelper.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private static string SaslPrep(string str, bool allowUnassigned)
141141

142142
/// <summary>
143143
/// Return true if the given <paramref name="ch"/> is an ASCII control character as defined by
144-
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-C.2.1">RFC 3454, Appendix C.2.1</a>.
144+
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-C.2.1">RFC 3454, Appendix C.2.1</a>.
145145
/// </summary>
146146
/// <param name="ch">The character.</param>
147147
/// <returns>Whether the given character is an ASCII control character.</returns>
@@ -187,7 +187,7 @@ private static int CharCount(int codepoint)
187187

188188
/// <summary>
189189
/// Return true if the given <paramref name="codepoint"/> is inappropriate for canonical representation
190-
/// characters as defined by <a href="https://tools.ietf.org/html/rfc3454#appendix-C.7">RFC 3454, Appendix C.7</a>.
190+
/// characters as defined by <a href="https://tools.ietf.org/html/rfc3454#appendix-C.7">RFC 3454, Appendix C.7</a>.
191191
/// </summary>
192192
/// <param name="codepoint">The Unicode character's codepoint.</param>
193193
/// <returns>True if the codepoint is inappropriate for canonical.</returns>
@@ -647,7 +647,7 @@ private static bool IsSurrogateCodepoint(int codepoint)
647647

648648
/// <summary>
649649
/// Return true if the given <paramref name="ch"/> is a "commonly mapped to nothing" character as defined by
650-
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-B.1">RFC 3454, Appendix B.1</a>.
650+
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-B.1">RFC 3454, Appendix B.1</a>.
651651
/// </summary>
652652
/// <param name="ch">The character.</param>
653653
/// <returns>Whether the given character is a "commonly mapped to nothing" character.</returns>
@@ -669,7 +669,7 @@ private static bool MappedToNothing(char ch)
669669

670670
/// <summary>
671671
/// Return true if the given <paramref name="codepoint"/> is a non-ASCII control character as defined by
672-
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-C.2.2">RFC 3454, Appendix C.2.2</a>.
672+
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-C.2.2">RFC 3454, Appendix C.2.2</a>.
673673
/// </summary>
674674
/// <param name="codepoint">The Unicode character's codepoint.</param>
675675
/// <returns>Whether the given character is a non-ASCII control character.</returns>
@@ -695,7 +695,7 @@ private static bool NonAsciiControl(int codepoint)
695695

696696
/// <summary>
697697
/// Return true if the given <paramref name="ch"/> is a non-ASCII space character as defined by
698-
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-C.1.2">RFC 3454, Appendix C.1.2</a>.
698+
/// <a href="https://tools.ietf.org/html/rfc3454#appendix-C.1.2">RFC 3454, Appendix C.1.2</a>.
699699
/// </summary>
700700
/// <param name="ch">The character.</param>
701701
/// <returns>Whether the given character is a non-ASCII space character.</returns>
@@ -752,7 +752,7 @@ private static bool PrivateUse(int codepoint)
752752

753753
/// <summary>
754754
/// Return true if the given <paramref name="codepoint"/> is a prohibited character as defined by
755-
///<a href="https://tools.ietf.org/html/rfc4013#section-2.3">RFC 4013, Section 2.3</a>.
755+
///<a href="https://tools.ietf.org/html/rfc4013#section-2.3">RFC 4013, Section 2.3</a>.
756756
/// </summary>
757757
/// <param name="codepoint">The Unicode character's codepoint.</param>
758758
/// <returns>Whether the codepoint is a prohibited character.</returns>

src/MongoDB.Driver/Core/Bindings/CoreSession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public void StartTransaction(TransactionOptions transactionOptions = null)
404404
throw new InvalidOperationException("Transactions do not support unacknowledged write concerns.");
405405
}
406406

407-
_currentTransaction?.UnpinAll(); // unpin data if any when a new transaction is started
407+
_currentTransaction?.UnpinAll(); // unpin data if any when a new transaction is started
408408
_currentTransaction = new CoreTransaction(transactionNumber, effectiveTransactionOptions);
409409
}
410410

src/MongoDB.Driver/Core/Clusters/ClusterClock.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void AdvanceClusterTime(BsonDocument newClusterTime)
5252
_clusterTime = GreaterClusterTime(_clusterTime, newClusterTime);
5353
}
5454
}
55-
55+
5656
internal sealed class NoClusterClock : IClusterClock
5757
{
5858
public BsonDocument ClusterTime => null;

src/MongoDB.Driver/Core/Clusters/ElectionId.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public bool Equals(ElectionId other)
7979
/// Returns a hash code for this instance.
8080
/// </summary>
8181
/// <returns>
82-
/// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
82+
/// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
8383
/// </returns>
8484
public override int GetHashCode()
8585
{

src/MongoDB.Driver/Core/Clusters/IClusterClock.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace MongoDB.Driver.Core.Clusters
2020
internal interface IClusterClock
2121
{
2222
BsonDocument ClusterTime { get; }
23-
23+
2424
void AdvanceClusterTime(BsonDocument newClusterTime);
2525
}
2626
}

src/MongoDB.Driver/Core/Compression/ICompressor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ public enum CompressorType
3333
/// </summary>
3434
Snappy = 1,
3535
/// <summary>
36-
/// The content of the message is compressed using zlib.
36+
/// The content of the message is compressed using zlib.
3737
/// </summary>
3838
Zlib = 2,
3939
/// <summary>
40-
/// The content of the message is compressed using zstandard.
40+
/// The content of the message is compressed using zstandard.
4141
/// </summary>
4242
ZStandard = 3
4343
}

src/MongoDB.Driver/Core/Compression/ZlibCompressor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace MongoDB.Driver.Core.Compression
2424
{
2525
/// <summary>
2626
/// Compressor according to the zlib algorithm.
27-
/// </summary>
27+
/// </summary>
2828
internal sealed class ZlibCompressor : ICompressor
2929
{
3030
private readonly CompressionLevel _compressionLevel;

src/MongoDB.Driver/Core/Events/Diagnostics/PerformanceCounterEventSubscriber.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace MongoDB.Driver.Core.Events.Diagnostics
3232
/// </summary>
3333
public sealed class PerformanceCounterEventSubscriber : IEventSubscriber
3434
{
35-
//static
35+
//static
3636
/// <summary>
3737
/// Installs the performance counters.
3838
/// </summary>

src/MongoDB.Driver/Core/Events/ReflectionEventSubscriber.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace MongoDB.Driver.Core.Events
2323
{
2424
/// <summary>
25-
/// Subscribes methods with a single argument to events
25+
/// Subscribes methods with a single argument to events
2626
/// of that single argument's type.
2727
/// </summary>
2828
public sealed class ReflectionEventSubscriber : IEventSubscriber

src/MongoDB.Driver/Core/Logging/StructuredLogTemplateProvidersSdam.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ private static void AddSdamTemplates()
7878
LogLevel.Trace,
7979
CmapCommonParams(Description),
8080
(e, _) => GetParams(e.ServerId, "Server description changed", e.NewDescription));
81-
}
81+
}
8282
}
8383
}

0 commit comments

Comments
 (0)