This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 7e1f825830d CAMEL-19132: Remove references to vm and direct-vm
SpanDecorators
7e1f825830d is described below
commit 7e1f825830d564a79f94ef4cbc46ccea65e885a9
Author: James Netherton <[email protected]>
AuthorDate: Wed Mar 15 09:48:21 2023 +0000
CAMEL-19132: Remove references to vm and direct-vm SpanDecorators
---
.../org.apache.camel.tracing.SpanDecorator | 2 --
.../camel/tracing/decorators/VmSpanDecorator.java | 31 ----------------------
2 files changed, 33 deletions(-)
diff --git
a/components/camel-opentelemetry/src/main/resources/META-INF/services/org.apache.camel.tracing.SpanDecorator
b/components/camel-opentelemetry/src/main/resources/META-INF/services/org.apache.camel.tracing.SpanDecorator
index cedccb3f682..0887c54b427 100644
---
a/components/camel-opentelemetry/src/main/resources/META-INF/services/org.apache.camel.tracing.SpanDecorator
+++
b/components/camel-opentelemetry/src/main/resources/META-INF/services/org.apache.camel.tracing.SpanDecorator
@@ -22,7 +22,6 @@ org.apache.camel.tracing.decorators.CometdSpanDecorator
org.apache.camel.tracing.decorators.CometdsSpanDecorator
org.apache.camel.tracing.decorators.CqlSpanDecorator
org.apache.camel.tracing.decorators.DirectSpanDecorator
-org.apache.camel.tracing.decorators.DirectvmSpanDecorator
org.apache.camel.tracing.decorators.DisruptorSpanDecorator
org.apache.camel.tracing.decorators.DisruptorvmSpanDecorator
org.apache.camel.tracing.decorators.ElasticsearchSpanDecorator
@@ -50,5 +49,4 @@ org.apache.camel.tracing.decorators.StompSpanDecorator
org.apache.camel.tracing.decorators.TimerSpanDecorator
org.apache.camel.tracing.decorators.UndertowSpanDecorator
org.apache.camel.tracing.decorators.VertxHttpSpanDecorator
-org.apache.camel.tracing.decorators.VmSpanDecorator
diff --git
a/components/camel-tracing/src/main/java/org/apache/camel/tracing/decorators/VmSpanDecorator.java
b/components/camel-tracing/src/main/java/org/apache/camel/tracing/decorators/VmSpanDecorator.java
deleted file mode 100644
index eec86bb800b..00000000000
---
a/components/camel-tracing/src/main/java/org/apache/camel/tracing/decorators/VmSpanDecorator.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.tracing.decorators;
-
-public class VmSpanDecorator extends AbstractInternalSpanDecorator {
-
- @Override
- public String getComponent() {
- return "vm";
- }
-
- @Override
- public String getComponentClassName() {
- return "org.apache.camel.component.vm.VmComponent";
- }
-
-}