Skip to content

Commit

Permalink
getPartitionGroupStrategy() return null by default
Browse files Browse the repository at this point in the history
  • Loading branch information
lprimak committed Jun 21, 2021
1 parent 8caa6e6 commit a72707b
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -20,7 +20,6 @@
import com.hazelcast.spi.partitiongroup.PartitionGroupStrategy;

import java.util.Collection;
import java.util.Collections;
import java.util.Map;

/**
Expand Down Expand Up @@ -93,7 +92,7 @@ default PartitionGroupStrategy getPartitionGroupStrategy(Collection<? extends Me
*/
@Deprecated
default PartitionGroupStrategy getPartitionGroupStrategy() {
return Collections::emptyList;
return null;
}

/**
Expand Down

0 comments on commit a72707b

Please sign in to comment.