Skip to content

Commit 9d04ef5

Browse files
committed
Calling base always.
1 parent 7458096 commit 9d04ef5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,9 @@ protected override void Dispose(bool disposing)
372372
_namedParameters.Clear();
373373
_namedParameters = null;
374374
}
375-
base.Dispose(disposing);
376375
}
377376
}
377+
base.Dispose(disposing);
378378
}
379379

380380
#endregion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ protected override void Dispose(bool disposing)
290290
_innerConnection = null;
291291
_options = null;
292292
_connectionString = null;
293-
base.Dispose(disposing);
294293
}
295294
}
295+
base.Dispose(disposing);
296296
}
297297

298298
#endregion

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ protected override void Dispose(bool disposing)
9393
_connection = null;
9494
_transaction = null;
9595
_isCompleted = true;
96-
base.Dispose(disposing);
9796
}
9897
}
98+
base.Dispose(disposing);
9999
}
100100

101101
#endregion

0 commit comments

Comments
 (0)