summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
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);
}