Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Vitkauskas <zadintuvas@gmail.com>2017-04-14 23:44:05 +0300
committerMarek Safar <marek.safar@gmail.com>2017-04-18 10:53:34 +0300
commit372f28339feab9abb954c7ba948a5a837cf700a2 (patch)
tree5e43d4a54f83a2b911a84a4fd533550f6c1e714e /mcs/class/Mono.Data.Sqlite
parent00efc0305a39f59df791fd572cec4c560f9803cd (diff)
Place break inside if block
Diffstat (limited to 'mcs/class/Mono.Data.Sqlite')
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnection.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnection.cs b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnection.cs
index 961184bb0d7..1e4e4608370 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnection.cs
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteConnection.cs
@@ -1555,8 +1555,10 @@ namespace Mono.Data.Sqlite
while (rdIndexes.Read())
{
if (rdIndexes.IsDBNull(4) == false)
+ {
row["INDEX_DEFINITION"] = rdIndexes.GetString(4);
- break;
+ break;
+ }
}
}