denis-chudov commented on code in PR #5092: URL: https://github.com/apache/ignite-3/pull/5092#discussion_r1967492063
########## modules/distribution-zones/src/main/java/org/apache/ignite/internal/distributionzones/DistributionZoneTimer.java: ########## @@ -162,7 +162,7 @@ protected void writeExternalData(DistributionZoneTimer object, IgniteDataOutput protected DistributionZoneTimer readExternalData(byte protoVer, IgniteDataInput in) throws IOException { HybridTimestamp timestamp = HybridTimestamp.hybridTimestamp(in.readVarInt()); int timeToWaitInSeconds = in.readVarIntAsInt(); - Set<NodeWithAttributes> nodes = in.readCollection(new HashSet<>(), NodeWithAttributesSerializer.INSTANCE::readExternal); + Set<NodeWithAttributes> nodes = in.readCollection(HashSet::new, NodeWithAttributesSerializer.INSTANCE::readExternal); Review Comment: no longer relevant, same reason as for DataNodesHistorySerializer -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org