Skip to content

Commit 2aadc4f

Browse files
committed
IGNITE-26839 fix review comment
1 parent 8f2c4b2 commit 2aadc4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/IgniteDhtPartitionCountersMap.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class IgniteDhtPartitionCountersMap implements Message {
3131
public static final short TYPE_CODE = 507;
3232

3333
/** */
34-
@Order(0)
34+
@Order(value = 0, method = "partitionCounters")
3535
private Map<Integer, CachePartitionFullCountersMap> map;
3636

3737
/**
@@ -72,14 +72,14 @@ public synchronized CachePartitionFullCountersMap get(int cacheId) {
7272
/**
7373
* @return Partition counters map.
7474
*/
75-
public Map<Integer, CachePartitionFullCountersMap> map() {
75+
public Map<Integer, CachePartitionFullCountersMap> partitionCounters() {
7676
return map;
7777
}
7878

7979
/**
8080
* @param map Partition counters map.
8181
*/
82-
public void map(Map<Integer, CachePartitionFullCountersMap> map) {
82+
public void partitionCounters(Map<Integer, CachePartitionFullCountersMap> map) {
8383
this.map = map;
8484
}
8585

0 commit comments

Comments
 (0)