Version 4.12.2 Updated FileDbCache and MapImages

This commit is contained in:
ClemensF 2019-07-16 21:28:55 +02:00
parent 5e0dd9a609
commit f74d700006
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ namespace MapControl.Caching
Debug.WriteLine("Created ImageFileCache in " + rootFolder.Path);
}
public virtual async Task<ImageCacheItem> GetAsync(string key)
public async Task<ImageCacheItem> GetAsync(string key)
{
string path = null;
@ -67,7 +67,7 @@ namespace MapControl.Caching
return null;
}
public virtual async Task SetAsync(string key, IBuffer buffer, DateTime expiration)
public async Task SetAsync(string key, IBuffer buffer, DateTime expiration)
{
var paths = key.Split('\\', '/', ',', ':', ';');