Skip to content

Commit a30f84a

Browse files
committed
Renamed args array.
1 parent 532b373 commit a30f84a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5545,7 +5545,7 @@ private static class LoadCacheJob<K, V> extends TopologyVersionAwareJob {
55455545
private final IgniteBiPredicate<K, V> p;
55465546

55475547
/** */
5548-
private final Object[] args;
5548+
private final Object[] loadArgs;
55495549

55505550
/** */
55515551
private final ExpiryPolicy plc;
@@ -5554,15 +5554,15 @@ private static class LoadCacheJob<K, V> extends TopologyVersionAwareJob {
55545554
* @param cacheName Cache name.
55555555
* @param topVer Affinity topology version.
55565556
* @param p Predicate.
5557-
* @param args Arguments.
5557+
* @param loadArgs Arguments.
55585558
* @param plc Policy.
55595559
*/
5560-
private LoadCacheJob(String cacheName, AffinityTopologyVersion topVer, IgniteBiPredicate<K, V> p, Object[] args,
5560+
private LoadCacheJob(String cacheName, AffinityTopologyVersion topVer, IgniteBiPredicate<K, V> p, Object[] loadArgs,
55615561
ExpiryPolicy plc) {
55625562
super(cacheName, topVer);
55635563

55645564
this.p = p;
5565-
this.args = args;
5565+
this.loadArgs = loadArgs;
55665566
this.plc = plc;
55675567
}
55685568

@@ -5574,7 +5574,7 @@ private LoadCacheJob(String cacheName, AffinityTopologyVersion topVer, IgniteBiP
55745574
if (plc != null)
55755575
cache = cache.withExpiryPolicy(plc);
55765576

5577-
cache.localLoadCache(p, args);
5577+
cache.localLoadCache(p, loadArgs);
55785578

55795579
return null;
55805580
}

0 commit comments

Comments
 (0)