You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/06/11 15:11:50 UTC

git commit: CAMEL-7497 removed the deprecated class in camel-test-spring

Repository: camel
Updated Branches:
  refs/heads/master 7a98b543f -> 45225d226


CAMEL-7497 removed the deprecated class in camel-test-spring


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/45225d22
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/45225d22
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/45225d22

Branch: refs/heads/master
Commit: 45225d226c1012f9b1451055cd601d2e8c76d08f
Parents: 7a98b54
Author: Willem Jiang <wi...@gmail.com>
Authored: Wed Jun 11 21:10:51 2014 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Wed Jun 11 21:11:24 2014 +0800

----------------------------------------------------------------------
 components/camel-test-spring/pom.xml            |  2 +-
 .../junit4/CamelSpringJUnit4ClassRunner.java    | 31 --------------------
 .../test/junit4/CamelSpringTestSupport.java     | 24 ---------------
 3 files changed, 1 insertion(+), 56 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/45225d22/components/camel-test-spring/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-test-spring/pom.xml b/components/camel-test-spring/pom.xml
index 4cdd192..e9d0c22 100644
--- a/components/camel-test-spring/pom.xml
+++ b/components/camel-test-spring/pom.xml
@@ -31,7 +31,7 @@
     <description>Camel Testing Library using JUnit and Spring</description>
 
     <properties>
-        <camel.osgi.export.pkg>org.apache.camel.test.junit4.*,org.apache.camel.test.spring.*</camel.osgi.export.pkg>
+        <camel.osgi.export.pkg>org.apache.camel.test.spring.*</camel.osgi.export.pkg>
     </properties>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/camel/blob/45225d22/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringJUnit4ClassRunner.java
----------------------------------------------------------------------
diff --git a/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringJUnit4ClassRunner.java b/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringJUnit4ClassRunner.java
deleted file mode 100644
index d21824f..0000000
--- a/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringJUnit4ClassRunner.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.test.junit4;
-
-import org.junit.runners.model.InitializationError;
-
-/**
- * @deprecated use {@link org.apache.camel.test.spring.CamelSpringJUnit4ClassRunner}
- */
-@Deprecated
-public class CamelSpringJUnit4ClassRunner extends org.apache.camel.test.spring.CamelSpringJUnit4ClassRunner {
-
-    public CamelSpringJUnit4ClassRunner(Class<?> clazz) throws InitializationError {
-        super(clazz);
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/camel/blob/45225d22/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringTestSupport.java
----------------------------------------------------------------------
diff --git a/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringTestSupport.java b/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringTestSupport.java
deleted file mode 100644
index 5636dbc..0000000
--- a/components/camel-test-spring/src/main/java/org/apache/camel/test/junit4/CamelSpringTestSupport.java
+++ /dev/null
@@ -1,24 +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.test.junit4;
-
-/**
- * @deprecated use {@link org.apache.camel.test.spring.CamelSpringTestSupport}
- */
-@Deprecated
-public abstract class CamelSpringTestSupport extends org.apache.camel.test.spring.CamelSpringTestSupport {
-}