We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ad56c commit 2a15672Copy full SHA for 2a15672
Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdClient/FbConnection.cs
@@ -42,7 +42,7 @@ public static void ClearAllPools()
42
public static void ClearPool(FbConnection connection)
43
{
44
if (connection == null)
45
- throw new ArgumentNullException("connection");
+ throw new ArgumentNullException(nameof(connection));
46
47
FbConnectionPoolManager.Instance.ClearPool(connection._options);
48
}
0 commit comments