cache-store: Refactor method parameter name
@59be649d014a169523faf29254e91a68af7bf331
--- app/utils/CacheStore.java
+++ app/utils/CacheStore.java
... | ... | @@ -32,8 +32,8 @@ |
32 | 32 |
.build(); |
33 | 33 |
|
34 | 34 |
|
35 |
- public static String getProjectCacheKey(String loginId, String projectName) { |
|
36 |
- return decodeUrlString(loginId) + ":" + decodeUrlString(projectName); |
|
35 |
+ public static String getProjectCacheKey(String owner, String projectName) { |
|
36 |
+ return decodeUrlString(owner) + ":" + decodeUrlString(projectName); |
|
37 | 37 |
} |
38 | 38 |
|
39 | 39 |
public static void refreshProjectMap(){ |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?