This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 736826d CAMEL-4921: Remove @version from source
736826d is described below
commit 736826d10b9c4f2dbf22913408f0f9935b4ad6ea
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Jan 2 13:41:09 2019 +0100
CAMEL-4921: Remove @version from source
---
.../apache/camel/processor/NavigateRouteTest.java | 2 --
.../camel/processor/RouteStartupOrderLastTest.java | 3 --
.../modules/ROOT/pages/graceful-shutdown.adoc | 40 ++--------------------
3 files changed, 2 insertions(+), 43 deletions(-)
diff --git
a/camel-core/src/test/java/org/apache/camel/processor/NavigateRouteTest.java
b/camel-core/src/test/java/org/apache/camel/processor/NavigateRouteTest.java
index f26885e..d5ea52e 100644
--- a/camel-core/src/test/java/org/apache/camel/processor/NavigateRouteTest.java
+++ b/camel-core/src/test/java/org/apache/camel/processor/NavigateRouteTest.java
@@ -28,8 +28,6 @@ import org.junit.Test;
/**
* Unit test for navigating a route (runtime processors, not the model).
- *
- * @version
*/
public class NavigateRouteTest extends ContextTestSupport {
diff --git
a/camel-core/src/test/java/org/apache/camel/processor/RouteStartupOrderLastTest.java
b/camel-core/src/test/java/org/apache/camel/processor/RouteStartupOrderLastTest.java
index a1b32b5..ed945d7 100644
---
a/camel-core/src/test/java/org/apache/camel/processor/RouteStartupOrderLastTest.java
+++
b/camel-core/src/test/java/org/apache/camel/processor/RouteStartupOrderLastTest.java
@@ -25,9 +25,6 @@ import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.spi.RouteStartupOrder;
import org.junit.Test;
-/**
- * @version
- */
public class RouteStartupOrderLastTest extends ContextTestSupport {
@Test
diff --git a/docs/user-manual/modules/ROOT/pages/graceful-shutdown.adoc
b/docs/user-manual/modules/ROOT/pages/graceful-shutdown.adoc
index ff8c232..b14d326 100644
--- a/docs/user-manual/modules/ROOT/pages/graceful-shutdown.adoc
+++ b/docs/user-manual/modules/ROOT/pages/graceful-shutdown.adoc
@@ -166,23 +166,8 @@ A Java DSL based example to defer shutting down the 2nd
[source,java]
---------------------------------
-/**
- * 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.processor;
+
import java.io.File;
import java.util.concurrent.atomic.AtomicBoolean;
@@ -199,9 +184,6 @@ import org.junit.Test;
import static org.apache.camel.ShutdownRoute.Defer;
-/**
- * @version
- */
public class ShutdownDeferTest extends ContextTestSupport {
private static final AtomicBoolean CONSUMER_SUSPENDED = new
AtomicBoolean();
@@ -301,23 +283,8 @@ files it has picked up before shutting down.
[source,java]
---------------------------------
-/**
- * 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.processor;
+
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
@@ -331,9 +298,6 @@ import org.apache.camel.component.mock.MockEndpoint;
import org.junit.Before;
import org.junit.Test;
-/**
- * @version
- */
public class ShutdownCompleteAllTasksTest extends ContextTestSupport {
private static String url = "file:target/pending?initialDelay=0&delay=10";