Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
sliekens committed Jun 29, 2015
1 parent a396868 commit 54026bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Powerup/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ private void AddCodeToObject()
con.Open();
using (var reader = cmd.ExecuteReader())
{
if (!reader.HasRows) return;
if (!reader.HasRows)
{
continue;
}

while (reader.Read())
{
sqlObject.Code += reader[0].ToString();
Expand Down

0 comments on commit 54026bf

Please sign in to comment.