1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 11:50:35 +08:00

Remove unnecessary LazyThreadSafetyMode specification

This commit is contained in:
Dean Herbert
2022-04-04 20:28:43 +09:00
Unverified
parent 300feadf6a
commit dac5dfde8f
@@ -61,7 +61,7 @@ namespace osu.Game.Skinning
return null;
}
private void invalidateCache() => fileToStoragePathMapping = new Lazy<Dictionary<string, string>>(initialiseFileCache, LazyThreadSafetyMode.ExecutionAndPublication);
private void invalidateCache() => fileToStoragePathMapping = new Lazy<Dictionary<string, string>>(initialiseFileCache);
private Dictionary<string, string> initialiseFileCache() => liveSource.PerformRead(source =>
{