Skip to content

Commit 7df31e8

Browse files
authored
Fix indentation.
1 parent 2cc7fcf commit 7df31e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/MySqlConnector/MySqlClient/MySqlConnection.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ public override void EnlistTransaction(System.Transactions.Transaction transacti
9393
private async Task ChangeDatabaseAsync(IOBehavior ioBehavior, string databaseName, CancellationToken cancellationToken)
9494
{
9595
if (string.IsNullOrWhiteSpace(databaseName))
96-
throw new ArgumentException("Database name is not valid.", nameof(databaseName));
97-
96+
throw new ArgumentException("Database name is not valid.", nameof(databaseName));
9897
if (State != ConnectionState.Open)
9998
throw new InvalidOperationException("Connection is not open.");
10099

0 commit comments

Comments
 (0)