summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-06-03 14:23:59 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:27 +0200
commit7b2f1f1eb72b81ebfb7907f8f5c1c08d6f4f2f15 (patch)
tree1a0cdeeba38a18a81bf32b6edcaf615d9a590a5f /config-model
parent69f770145235c9ba7b1899fe74b9b2e2e3e8629e (diff)
Remove on Vespa 8
Diffstat (limited to 'config-model')
-rwxr-xr-xconfig-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
index f9979eb5070..e9bf65cda2d 100755
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
@@ -191,7 +191,6 @@ public abstract class ContainerCluster<CONTAINER extends Container>
addSimpleComponent(com.yahoo.container.handler.ClustersStatus.class.getName());
addSimpleComponent("com.yahoo.container.jdisc.DisabledConnectionLogProvider");
addSimpleComponent(com.yahoo.jdisc.http.server.jetty.Janitor.class);
- addJaxProviders();
}
public ClusterSpec.Id id() { return ClusterSpec.Id.from(getName()); }
@@ -243,19 +242,6 @@ public abstract class ContainerCluster<CONTAINER extends Container>
addComponent(vipHandler);
}
- @SuppressWarnings("deprecation")
- private void addJaxProviders() {
- addSimpleComponent(com.yahoo.container.xml.providers.DatatypeFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.DocumentBuilderFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.SAXParserFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.SchemaFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.TransformerFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.XMLEventFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.XMLInputFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.XMLOutputFactoryProvider.class);
- addSimpleComponent(com.yahoo.container.xml.providers.XPathFactoryProvider.class);
- }
-
public final void addComponent(Component<?, ?> component) {
componentGroup.addComponent(component);
}