diff options
Diffstat (limited to 'Aktywator/Setting.cs')
-rw-r--r-- | Aktywator/Setting.cs | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/Aktywator/Setting.cs b/Aktywator/Setting.cs index a5540d6..613065f 100644 --- a/Aktywator/Setting.cs +++ b/Aktywator/Setting.cs @@ -161,19 +161,13 @@ namespace Aktywator try { sql.query(this.getAddColumnSql()); - } - catch (OleDbException) - { - } - if (setDefault) - { - try + if (setDefault) { sql.query(this.getSetDefaultSql()); } - catch (OleDbException) - { - } + } + catch (OleDbException) + { } } } |