Promote OSGiGlobalEventExecutor 49/103049/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 3 Nov 2022 02:29:10 +0000 (03:29 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 3 Nov 2022 02:29:10 +0000 (03:29 +0100)
Drop @Beta annotation.

Change-Id: I15e93a4645dd586fe80aab36e6d27495508fda82
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
opendaylight/config/netty-event-executor-config/src/main/java/org/opendaylight/controller/config/yang/netty/eventexecutor/OSGiGlobalEventExecutor.java

index f5081eea7bbafc71a82d7fafd74e49999f50a7cc..58697d8e23bf025be103bc8a820e6e055881dcad 100644 (file)
@@ -9,7 +9,6 @@ package org.opendaylight.controller.config.yang.netty.eventexecutor;
 
 import static io.netty.util.concurrent.GlobalEventExecutor.INSTANCE;
 
-import com.google.common.annotations.Beta;
 import io.netty.util.concurrent.EventExecutor;
 import io.netty.util.concurrent.EventExecutorGroup;
 import io.netty.util.concurrent.Future;
@@ -29,7 +28,6 @@ import org.osgi.service.component.annotations.Deactivate;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-@Beta
 @Component(immediate = true, property = "type=global-event-executor")
 public final class OSGiGlobalEventExecutor implements EventExecutor {
     private static final Logger LOG = LoggerFactory.getLogger(OSGiGlobalEventExecutor.class);