Skip to content

Commit 4b1d56b

Browse files
Fix a typo
1 parent c07c6af commit 4b1d56b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/NHibernate/Async/Cache/StandardQueryCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public async Task<IList> GetAsync(QueryKey key, ICacheAssembler[] returnTypes, b
141141
return null;
142142
}
143143

144-
var timestamp = GetResultsMetadata(cacheable, out var _);
144+
var timestamp = GetResultsMetadata(cacheable, out _);
145145

146146
if (Log.IsDebugEnabled())
147147
Log.Debug("Checking query spaces for up-to-dateness [{0}]", StringHelper.CollectionToString(spaces));

src/NHibernate/Cache/StandardQueryCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public IList Get(QueryKey key, ICacheAssembler[] returnTypes, bool isNaturalKeyL
173173
return null;
174174
}
175175

176-
var timestamp = GetResultsMetadata(cacheable, out var _);
176+
var timestamp = GetResultsMetadata(cacheable, out _);
177177

178178
if (Log.IsDebugEnabled())
179179
Log.Debug("Checking query spaces for up-to-dateness [{0}]", StringHelper.CollectionToString(spaces));

0 commit comments

Comments
 (0)