Skip to content

Commit

Permalink
Place break inside if block
Browse files Browse the repository at this point in the history
  • Loading branch information
jvitkauskas committed Apr 14, 2017
1 parent bfbc3c1 commit 3742c25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Mono.Data.Sqlite/SQLiteConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1555,8 +1555,10 @@ private DataTable Schema_Indexes(string strCatalog, string strTable, string strI
while (rdIndexes.Read())
{
if (rdIndexes.IsDBNull(4) == false)
{
row["INDEX_DEFINITION"] = rdIndexes.GetString(4);
break;
break;
}
}
}

Expand Down

0 comments on commit 3742c25

Please sign in to comment.