From a388c069a7b623c65b99f7fef2b0902104eb89c8 Mon Sep 17 00:00:00 2001
From: Robert Munteanu <rombert@apache.org>
Date: Mon, 9 Jan 2017 11:59:38 +0200
Subject: [PATCH] OAK-5423 - MultiplexingNodeStoreService: Missing element AD
 in element OCD

Remove name/description from the component and therefore prevent
generation of a metatype descriptor.
---
 .../oak/plugins/multiplex/MultiplexingNodeStoreService.java        | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStoreService.java b/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStoreService.java
index 4a20ca6577..935b3738f4 100644
--- a/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStoreService.java
+++ b/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStoreService.java
@@ -44,12 +44,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.Set;
 
-@Component(policy = ConfigurationPolicy.REQUIRE,
-        metatype = true,
-        label = "Apache Jackrabbit Oak Multiplexing NodeStore Service",
-        description = "NodeStore implementation proxying all the operations " +
-                "to other nodestores configured in OSGi"
-)
+@Component(policy = ConfigurationPolicy.REQUIRE)
 public class MultiplexingNodeStoreService {
 
     private static final Logger LOG = LoggerFactory.getLogger(MultiplexingNodeStoreService.class);
-- 
2.11.0

