mdedetrich commented on code in PR #2464: URL: https://github.com/apache/pekko/pull/2464#discussion_r2507866957
########## actor/src/main/java/org/apache/pekko/util/OptionalUtil.java: ########## @@ -0,0 +1,64 @@ +/* + * 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) 2009-2022 Lightbend Inc. <https://www.lightbend.com> + */ + +package org.apache.pekko.util; + +import java.util.Optional; +import java.util.OptionalInt; +import java.util.OptionalLong; +import org.apache.pekko.annotation.InternalStableApi; +import scala.None$; +import scala.jdk.javaapi.OptionConverters; + +/** INTERNAL API */ +@InternalStableApi +public class OptionalUtil { Review Comment: Done and pushed -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
