Skip to content

Commit 352294f

Browse files
committed
Fix throw warning
1 parent 3e43cbc commit 352294f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/SQLite.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2009-2021 Krueger Systems, Inc.
2+
// Copyright (c) 2009-2024 Krueger Systems, Inc.
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal
@@ -2003,7 +2003,7 @@ public int Update (object obj, Type objType)
20032003
throw NotNullConstraintViolationException.New (ex, map, obj);
20042004
}
20052005

2006-
throw ex;
2006+
throw;
20072007
}
20082008

20092009
if (rowsAffected > 0)

src/SQLiteAsync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright (c) 2012-2021 Krueger Systems, Inc.
2+
// Copyright (c) 2012-2024 Krueger Systems, Inc.
33
//
44
// Permission is hereby granted, free of charge, to any person obtaining a copy
55
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)