Skip to content

Commit

Permalink
Merge branch 'master' into optimization/dispatcher-helper
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 authored Feb 1, 2020
2 parents 23c5dd7 + ef65272 commit f2f7cf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Microsoft.Toolkit.Uwp.UI/Cache/FileCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class FileCache : CacheBase<StorageFile>
protected override Task<StorageFile> InitializeTypeAsync(Stream stream, List<KeyValuePair<string, object>> initializerKeyValues = null)
{
// nothing to do in this instance;
return null;
return Task.FromResult<StorageFile>(null);
}

/// <summary>
Expand All @@ -45,7 +45,7 @@ protected override Task<StorageFile> InitializeTypeAsync(Stream stream, List<Key
/// <returns>awaitable task</returns>
protected override Task<StorageFile> InitializeTypeAsync(StorageFile baseFile, List<KeyValuePair<string, object>> initializerKeyValues = null)
{
return Task.Run(() => baseFile);
return Task.FromResult(baseFile);
}
}
}
1 change: 0 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ Once you do a search, you should see a list similar to the one below (versions m

## Feedback and Requests
Please use [GitHub Issues](https://github.com/windows-toolkit/WindowsCommunityToolkit/issues) for bug reports and feature requests.
For feature requests, please also create an entry in our [UserVoice](https://wpdev.uservoice.com/forums/110705-universal-windows-platform/category/193402-uwp-community-toolkit).
For general questions and support, please use [Stack Overflow](https://stackoverflow.com/questions/tagged/windows-community-toolkit) where questions should be tagged with the tag `windows-community-toolkit`.

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "6.0.0-build.{height}",
"version": "6.1.0-build.{height}",
"publicReleaseRefSpec": [
"^refs/heads/master$", // we release out of master
"^refs/heads/dev$", // we release out of dev
Expand Down

0 comments on commit f2f7cf4

Please sign in to comment.