diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs b/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs index de961e24d..0daa7a0d2 100644 --- a/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs +++ b/Software/Visual_Studio/Tango.Synchronization/Conversion/SqlServerToSQLiteConverter.cs @@ -320,10 +320,10 @@ namespace Tango.Synchronization.Conversion { return new Guid(str); } - catch (Exception ex) + catch { return Guid.Empty; - } // catch + } } /// <summary> @@ -544,7 +544,7 @@ namespace Tango.Synchronization.Conversion tx.Commit(); } - catch (SQLiteException ex) + catch (SQLiteException) { tx.Rollback(); @@ -1080,10 +1080,10 @@ namespace Tango.Synchronization.Conversion } // while } // using } - catch (Exception ex) + catch (Exception) { LogManager.Log("failed to read index information for table [" + tableName + "]"); - } // catch + } return res; } |
