anton-vinogradov commented on code in PR #11096:
URL: https://github.com/apache/ignite/pull/11096#discussion_r1426406994
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteCacheProxyImpl.java:
##########
@@ -266,11 +266,11 @@ public GridCacheContext<K, V> context0() {
ctx = this.ctx;
if (ctx == null) {
- GridCacheContext<K, V> context = oldContext;
+ GridCacheContext<K, V> ctx0 = oldContext;
- assert context != null;
+ assert ctx0 != null;
- return context;
+ return ctx0;
Review Comment:
Looks like a useless variable
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]