Skip to content

Commit b5e70cd

Browse files
author
Didar Shayarov
committed
Use MessageSerializer for GridDhtAtomicUpdateRequest
1 parent 945d3d4 commit b5e70cd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/atomic/GridDhtAtomicUpdateRequest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
package org.apache.ignite.internal.processors.cache.distributed.dht.atomic;
1919

2020
import java.util.ArrayList;
21-
import java.util.Collections;
2221
import java.util.List;
2322
import java.util.UUID;
2423
import javax.cache.processor.EntryProcessor;
@@ -640,7 +639,7 @@ public void entryProcessorsBytes(List<byte[]> entryProcessorsBytes) {
640639
* @return Serialized near entry processors.
641640
*/
642641
public List<byte[]> nearEntryProcessorsBytes() {
643-
return Collections.unmodifiableList(nearEntryProcessorsBytes);
642+
return nearEntryProcessorsBytes;
644643
}
645644

646645
/**

0 commit comments

Comments
 (0)