style : 修正参数命名

This commit is contained in:
何冠峰
2025-07-23 14:07:12 +08:00
parent 4489ca570b
commit 0fd75b835a

View File

@@ -176,10 +176,10 @@ internal class TiktokFileSystem : IFileSystem
YooLogger.Warning($"Invalid parameter : {name}"); YooLogger.Warning($"Invalid parameter : {name}");
} }
} }
public virtual void OnCreate(string packageName, string rootDirectory) public virtual void OnCreate(string packageName, string packageRoot)
{ {
PackageName = packageName; PackageName = packageName;
_ttCacheRoot = rootDirectory; _ttCacheRoot = packageRoot;
if (string.IsNullOrEmpty(_ttCacheRoot)) if (string.IsNullOrEmpty(_ttCacheRoot))
{ {