修复文件大小缓存项注释格式,确保代码风格一致性。

This commit is contained in:
wood chen 2025-06-27 02:04:20 +08:00
parent 30e2f1360e
commit febe460baa

View File

@ -16,7 +16,7 @@ import (
"time"
)
// 文件大小缓存项
// 文件大小缓存项
type fileSizeCache struct {
size int64
timestamp time.Time
@ -375,3 +375,4 @@ func ClearFileSizeCache() {
if count > 0 {
log.Printf("[FileSizeCache] 清理了 %d 个文件大小缓存项", count)
}
}