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 0e3a6f9 commit a02bd33Copy full SHA for a02bd33
Orm/Xtensive.Orm/Orm/Domain.cs
@@ -453,13 +453,13 @@ public async ValueTask InnerDispose(bool isAsync)
453
NotifyDisposing();
454
Services.Dispose();
455
456
- if (SingleConnection==null) {
+ if (SingleConnection == null) {
457
return;
458
}
459
460
SqlConnection singleConnectionLocal;
461
lock (singleConnectionGuard) {
462
- if (singleConnectionOwner!=null) {
+ if (singleConnectionOwner != null) {
463
OrmLog.Warning(
464
Strings.LogUnableToCloseSingleAvailableConnectionItIsStillUsedBySessionX,
465
singleConnectionOwner);
0 commit comments