1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-05 20:34:07 +02:00

Make BrowserCache.CacheFolder a property

This commit is contained in:
chylex 2017-12-31 12:14:45 +01:00
parent 390872c305
commit a05460f562

View File

@ -6,7 +6,7 @@
namespace TweetDuck.Core.Utils{
static class BrowserCache{
public static readonly string CacheFolder = Path.Combine(Program.StoragePath, "Cache");
public static string CacheFolder => Path.Combine(Program.StoragePath, "Cache");
private static bool ClearOnExit;
private static Timer AutoClearTimer;