This is an automated email from the ASF dual-hosted git repository. hepin pushed a commit to branch JAPI in repository https://gitbox.apache.org/repos/asf/pekko.git
commit 7c13c67e0a10715d0d92fddf8d6a58dd4fd16f5d Author: He-Pin <[email protected]> AuthorDate: Sat Aug 23 18:50:17 2025 +0800 chore: Remove JAPI --- .../src/main/java/org/apache/pekko/japi/JAPI.java | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/actor/src/main/java/org/apache/pekko/japi/JAPI.java b/actor/src/main/java/org/apache/pekko/japi/JAPI.java deleted file mode 100644 index 2a3015c07a..0000000000 --- a/actor/src/main/java/org/apache/pekko/japi/JAPI.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * license agreements; and to You under the Apache License, version 2.0: - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * This file is part of the Apache Pekko project, which was derived from Akka. - */ - -/* - * Copyright (C) 2018-2022 Lightbend Inc. <https://www.lightbend.com> - */ - -package org.apache.pekko.japi; - -import scala.collection.Seq; - -@Deprecated -public class JAPI { - - /** - * Create a Scala seq from a Java array. - * - * @deprecated since 1.1.0. Use <code> - * org.apache.pekko.japi.Util.immutableSeq(java.util.Arrays.asList(...));</code> instead. - */ - @Deprecated - @SafeVarargs - public static <T> Seq<T> seq(T... ts) { - return Util.immutableSeq(ts); - } -} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
