Repository: camel Updated Branches: refs/heads/master cdfee48f7 -> 2db1d8d1e
CAMEL-8174 Fixed the camel-test-blueprint build error Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2db1d8d1 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2db1d8d1 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2db1d8d1 Branch: refs/heads/master Commit: 2db1d8d1ee342313da2601740b1c526aa337b11d Parents: cdfee48 Author: Willem Jiang <willem.ji...@gmail.com> Authored: Tue Mar 3 20:48:19 2015 +0800 Committer: Willem Jiang <willem.ji...@gmail.com> Committed: Tue Mar 3 20:48:19 2015 +0800 ---------------------------------------------------------------------- .../test/blueprint/MyInflightRepository.java | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2db1d8d1/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/MyInflightRepository.java ---------------------------------------------------------------------- diff --git a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/MyInflightRepository.java b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/MyInflightRepository.java new file mode 100644 index 0000000..9f91411 --- /dev/null +++ b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/MyInflightRepository.java @@ -0,0 +1,23 @@ +/** + * 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.blueprint; + +import org.apache.camel.impl.DefaultInflightRepository; + +public class MyInflightRepository extends DefaultInflightRepository { + +}