Skip to content

Commit 061e04f

Browse files
author
Oleksandr Poliakov
committed
Pr
1 parent ba9e276 commit 061e04f

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/MongoDB.Driver/AbortTransactionOptions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ namespace MongoDB.Driver
2121
// TODO: CSOT: Make it public when CSOT will be ready for GA
2222
internal sealed class AbortTransactionOptions
2323
{
24-
public AbortTransactionOptions()
25-
{}
26-
2724
public AbortTransactionOptions(TimeSpan? timeout)
2825
{
2926
Timeout = Ensure.IsNullOrValidTimeout(timeout, nameof(timeout));

src/MongoDB.Driver/CommitTransactionOptions.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,12 @@ namespace MongoDB.Driver
2121
// TODO: CSOT: Make it public when CSOT will be ready for GA
2222
internal sealed class CommitTransactionOptions
2323
{
24-
public CommitTransactionOptions()
25-
{}
26-
2724
public CommitTransactionOptions(TimeSpan? timeout)
2825
{
2926
Timeout = Ensure.IsNullOrValidTimeout(timeout, nameof(timeout));
3027
}
3128

3229
public TimeSpan? Timeout { get; }
3330
}
34-
3531
}
3632

0 commit comments

Comments
 (0)