Skip to content

Commit

Permalink
Fixed build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-jitbit committed Nov 4, 2024
1 parent e0a34a8 commit 1149517
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions FastCache/FastCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,9 @@ public void ModifyIfExpired(Func<TValue> newValueFactory, TimeSpan newTtl)

//IDispisable members
private bool _disposedValue;
/// <inheritdoc/>
public void Dispose() => Dispose(true);
/// <inheritdoc/>
protected virtual void Dispose(bool disposing)
{
if (!_disposedValue)
Expand Down

0 comments on commit 1149517

Please sign in to comment.