Skip to content

Commit

Permalink
Remove ambiguous constructor for OpetreeRebalanceCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
cheziyi committed Apr 26, 2020
1 parent 43dbe9e commit c8f8a7d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/PrismaDB.QueryAST/DCL/AsyncCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,6 @@ public class OpetreeRebalanceCommand : AsyncCommand
public RebalanceStopType StopType;
public DecimalConstant StopAfter;

public OpetreeRebalanceCommand(bool statusCheck = false)
{
StopType = RebalanceStopType.FULL;
StopAfter = new DecimalConstant(1);
StatusCheck = statusCheck;
}

public OpetreeRebalanceCommand(RebalanceStopType stopType = RebalanceStopType.FULL, decimal stopAfter = 1, bool statusCheck = false)
{
StopType = stopType;
Expand Down

0 comments on commit c8f8a7d

Please sign in to comment.