This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko.git
The following commit(s) were added to refs/heads/main by this push:
new 0428719fac Delete CollectionUtil.scala (#2615)
0428719fac is described below
commit 0428719faca4d17b63089e120ec56e3666ad72e3
Author: PJ Fanning <[email protected]>
AuthorDate: Sat Jan 10 14:05:28 2026 +0100
Delete CollectionUtil.scala (#2615)
---
.../pekko/stream/javadsl/CollectionUtil.scala | 39 ----------------------
1 file changed, 39 deletions(-)
diff --git
a/stream/src/main/scala-3/org/apache/pekko/stream/javadsl/CollectionUtil.scala
b/stream/src/main/scala-3/org/apache/pekko/stream/javadsl/CollectionUtil.scala
deleted file mode 100644
index dd130eba5d..0000000000
---
a/stream/src/main/scala-3/org/apache/pekko/stream/javadsl/CollectionUtil.scala
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.pekko.stream
-package javadsl
-
-import scala.collection.immutable
-import scala.jdk.CollectionConverters._
-
-import org.apache.pekko
-import pekko.annotation.InternalApi
-
-/**
- * INTERNAL API
- *
- * Utility methods for converting Java collections to Scala collections.
- */
-@InternalApi
-private[javadsl] object CollectionUtil {
- inline def toSeq[T](jlist: java.util.List[T]): immutable.Seq[T] =
- jlist.asScala.toSeq
-
- inline def toSeq[T](jiterable: java.lang.Iterable[T]): immutable.Seq[T] =
- jiterable.asScala.toSeq
-}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]