He-Pin commented on code in PR #1622: URL: https://github.com/apache/pekko/pull/1622#discussion_r1901811455
########## stream/src/main/scala/org/apache/pekko/stream/impl/fusing/FlatMapPrefix.scala: ########## @@ -128,8 +129,8 @@ import pekko.util.OptionVal def materializeFlow(): Unit = try { - val prefix = accumulated.toVector - accumulated.clear() Review Comment: which holds an `null` array. ```scala /** Reduce length to `n`, nulling out all dropped elements */ private def reduceToSize(n: Int): Unit = { mutationCount += 1 Arrays.fill(array, n, size0, null) size0 = n } ``` Now fixed, @raboof @pjfanning -- 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...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org