style: 取消行尾注释

This commit is contained in:
ray
2024-08-15 21:08:21 +08:00
parent 42d168c527
commit addb7c38bd

View File

@@ -66,7 +66,8 @@ public class RedisCacheConfig {
if (!redisProperties.isUseKeyPrefix()) {
config = config.disableKeyPrefix();
}
config = config.computePrefixWith(name -> name + ":");//覆盖默认key双冒号 CacheKeyPrefix#prefixed
// 覆盖默认key双冒号 CacheKeyPrefix#prefixed
config = config.computePrefixWith(name -> name + ":");
return config;
}