Skip to content

Commit 6a416eb

Browse files
committed
Fix NREs & bump version
1 parent fe50d38 commit 6a416eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Orm/Xtensive.Orm/Orm/Session.QueryTasks.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private bool ProcessInternalDelayedQueries(bool allowPartialExecution)
7979
return true;
8080
}
8181
finally {
82-
internalQueryTasks.Clear();
82+
internalQueryTasks?.Clear();
8383
}
8484
}
8585

@@ -95,7 +95,7 @@ await Handler.ExecuteQueryTasksAsync(
9595
return true;
9696
}
9797
finally {
98-
internalQueryTasks.Clear();
98+
internalQueryTasks?.Clear();
9999
}
100100
}
101101

@@ -110,7 +110,7 @@ private bool ProcessUserDefinedDelayedQueries(bool allowPartialExecution)
110110
return true;
111111
}
112112
finally {
113-
userDefinedQueryTasks.Clear();
113+
userDefinedQueryTasks?.Clear();
114114
}
115115
}
116116

Version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

44
<PropertyGroup>
5-
<DoVersion>7.2.0.103</DoVersion>
5+
<DoVersion>7.2.0.104</DoVersion>
66
<DoVersionSuffix>servicetitan</DoVersionSuffix>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)