diff --git a/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs b/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs index c79daf725..0a3f9319e 100644 --- a/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs +++ b/Assets/Editor/TimelineNameCollector/TimelineNameCache.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Security.Cryptography; @@ -30,15 +30,11 @@ namespace AibisDream.EditorTools public int version = CurrentVersion; public string lastFullScanTime; public List entries = new List(); - - private static readonly string CacheFolderRelativePath = "Assets/Editor/TimelineNameCollector/Cache"; private static readonly string CacheFileName = "timeline_name_cache.json"; - public static string CacheFolderFullPath => - Path.Combine(Application.dataPath, "Editor/TimelineNameCollector/Cache"); + public static string CacheFolderFullPath => Path.Combine(Application.dataPath, "Editor/TimelineNameCollector/Cache"); - public static string CacheFileFullPath => - Path.Combine(CacheFolderFullPath, CacheFileName); + public static string CacheFileFullPath => Path.Combine(CacheFolderFullPath, CacheFileName); public static TimelineNameCache Load() {