提交者
Gitee
!457 修改RedisCache方法形参命名
Merge pull request !457 from lu_ming/master
正在显示
1 个修改的文件
包含
3 行增加
和
3 行删除
| @@ -213,12 +213,12 @@ public class RedisCache | @@ -213,12 +213,12 @@ public class RedisCache | ||
| 213 | * 删除Hash中的数据 | 213 | * 删除Hash中的数据 |
| 214 | * | 214 | * |
| 215 | * @param key | 215 | * @param key |
| 216 | - * @param mapkey | 216 | + * @param hKey |
| 217 | */ | 217 | */ |
| 218 | - public void delCacheMapValue(final String key, final String hkey) | 218 | + public void delCacheMapValue(final String key, final String hKey) |
| 219 | { | 219 | { |
| 220 | HashOperations hashOperations = redisTemplate.opsForHash(); | 220 | HashOperations hashOperations = redisTemplate.opsForHash(); |
| 221 | - hashOperations.delete(key, hkey); | 221 | + hashOperations.delete(key, hKey); |
| 222 | } | 222 | } |
| 223 | 223 | ||
| 224 | /** | 224 | /** |
-
请 注册 或 登录 后发表评论