Skip to content

Commit a8ba088

Browse files
committed
Small fixes
1 parent 08247aa commit a8ba088

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/MongoDB.Bson/IO/BsonBinaryReaderSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ protected override BsonReaderSettings CloneImplementation()
136136
Encoding = _encoding,
137137
FixOldBinarySubTypeOnInput = _fixOldBinarySubTypeOnInput,
138138
FixOldDateTimeMaxValueOnInput = _fixOldDateTimeMaxValueOnInput,
139-
MaxDocumentSize = _maxDocumentSize,
139+
MaxDocumentSize = _maxDocumentSize
140140
};
141141

142142
return clone;

src/MongoDB.Bson/IO/BsonBinaryWriterSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ protected override BsonWriterSettings CloneImplementation()
122122
Encoding = _encoding,
123123
FixOldBinarySubTypeOnOutput = _fixOldBinarySubTypeOnOutput,
124124
MaxDocumentSize = _maxDocumentSize,
125-
MaxSerializationDepth = MaxSerializationDepth,
125+
MaxSerializationDepth = MaxSerializationDepth
126126
};
127127
return clone;
128128
}

src/MongoDB.Bson/IO/BsonReaderSettings.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*/
1515

1616
using System;
17-
using MongoDB.Bson.Serialization;
1817

1918
namespace MongoDB.Bson.IO
2019
{

0 commit comments

Comments
 (0)