Skip to content

Commit 20cc9b3

Browse files
committed
Better names.
1 parent a615ad4 commit 20cc9b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdClient/FbConnectionPoolManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ static FbConnectionPoolManager()
185185
{
186186
Instance = new FbConnectionPoolManager();
187187
#if !NETSTANDARD1_6
188-
AppDomain.CurrentDomain.DomainUnload += (sender, args) => Instance.Dispose();
189-
AppDomain.CurrentDomain.ProcessExit += (sender, args) => Instance.Dispose();
188+
AppDomain.CurrentDomain.DomainUnload += (sender, e) => Instance.Dispose();
189+
AppDomain.CurrentDomain.ProcessExit += (sender, e) => Instance.Dispose();
190190
#endif
191191
}
192192

0 commit comments

Comments
 (0)