Skip to content

Commit fcd00a9

Browse files
Upgrade obsolete comments
1 parent 473bf03 commit fcd00a9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/NHibernate/Cache/CacheFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public static class CacheFactory
3030
/// <param name="settings">Used to retrieve the global cache region prefix.</param>
3131
/// <param name="properties">Properties the cache provider can use to configure the cache.</param>
3232
/// <returns>An <see cref="ICacheConcurrencyStrategy"/> to use for this object in the <see cref="ICache"/>.</returns>
33-
// Since v5.2
34-
[Obsolete("Please use overload with a CacheBase builder parameter.")]
33+
// Since v5.3
34+
[Obsolete("Please use overload with a CacheBase parameter.")]
3535
public static ICacheConcurrencyStrategy CreateCache(
3636
string usage,
3737
string name,

src/NHibernate/Cache/IQueryCacheFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace NHibernate.Cache
1010
/// </summary>
1111
public interface IQueryCacheFactory
1212
{
13-
// Since v5.2
13+
// Since v5.3
1414
[Obsolete("Please use extension overload with a CacheBase parameter.")]
1515
IQueryCache GetQueryCache(
1616
string regionName,

src/NHibernate/Cache/StandardQueryCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public partial class StandardQueryCache : IQueryCache, IBatchableQueryCache
2222
private readonly UpdateTimestampsCache _updateTimestampsCache;
2323
private readonly CacheBase _cache;
2424

25-
// Since v5.2
25+
// Since v5.3
2626
[Obsolete("Please use overload with a CacheBase parameter.")]
2727
public StandardQueryCache(
2828
Settings settings,

src/NHibernate/Cache/StandardQueryCacheFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace NHibernate.Cache
1010
/// </summary>
1111
public class StandardQueryCacheFactory : IQueryCacheFactory
1212
{
13-
// Since v5.2
13+
// Since v5.3
1414
[Obsolete("Please use overload with a CacheBase parameter.")]
1515
public IQueryCache GetQueryCache(string regionName,
1616
UpdateTimestampsCache updateTimestampsCache,

src/NHibernate/Cache/UpdateTimestampsCache.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public virtual void Clear()
2525
_updateTimestamps.Clear();
2626
}
2727

28-
// Since v5.2
28+
// Since v5.3
2929
[Obsolete("Please use overload with a CacheBase parameter.")]
3030
public UpdateTimestampsCache(Settings settings, IDictionary<string, string> props)
3131
: this(
@@ -155,7 +155,7 @@ public virtual bool[] AreUpToDate(ISet<string>[] spaces, long[] timestamps)
155155
return results;
156156
}
157157

158-
// Since v5.2
158+
// Since v5.3
159159
[Obsolete("This method has no usages anymore")]
160160
public virtual void Destroy()
161161
{

0 commit comments

Comments
 (0)