Skip to content

Commit

Permalink
Merge pull request #58 from HeadspringLabs/seal-bulkwriter-class
Browse files Browse the repository at this point in the history
Mark BulkWriter class sealed.
  • Loading branch information
Dane Schilling authored Apr 1, 2020
2 parents 16a4583 + 80089ec commit 4bec865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BulkWriter/BulkWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace BulkWriter
/// </summary>
/// <typeparam name="TResult">Type of objects to be written to the database</typeparam>
/// <inheritdoc cref="IBulkWriter{TResult}"/>
public class BulkWriter<TResult> : IBulkWriter<TResult>
public sealed class BulkWriter<TResult> : IBulkWriter<TResult>
{
private readonly SqlBulkCopy _sqlBulkCopy;
private readonly IEnumerable<PropertyMapping> _propertyMappings;
Expand Down

0 comments on commit 4bec865

Please sign in to comment.