You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/03/01 07:34:57 UTC

[camel] branch master updated (468a2ba -> fff69f5)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 468a2ba  Fixed CS for Camel-CDI
     new c1440e1  Fixed CS for Camel-http-common
     new fff69f5  Fixed CS for camel-core

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java | 2 +-
 .../camel/component/file/FileProducerToDMoveExistingTest.java       | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)


[camel] 02/02: Fixed CS for camel-core

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit fff69f530d970c8eaf8d87d74f6f8c36d1b9b72b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 1 08:34:38 2019 +0100

    Fixed CS for camel-core
---
 .../camel/component/file/FileProducerToDMoveExistingTest.java       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/file/FileProducerToDMoveExistingTest.java b/core/camel-core/src/test/java/org/apache/camel/component/file/FileProducerToDMoveExistingTest.java
index cb66d3a..68056e7 100644
--- a/core/camel-core/src/test/java/org/apache/camel/component/file/FileProducerToDMoveExistingTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/component/file/FileProducerToDMoveExistingTest.java
@@ -5,9 +5,9 @@
  * 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
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
+ *
+ *      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.


[camel] 01/02: Fixed CS for Camel-http-common

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c1440e163d54e0436c3297411a30d405a485c72e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 1 08:28:46 2019 +0100

    Fixed CS for Camel-http-common
---
 .../java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java b/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java
index 141056a..63766e6 100644
--- a/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java
+++ b/components/camel-http-common/src/test/java/org/apache/camel/http/common/HttpSendDynamicAwareTest.java
@@ -75,7 +75,7 @@ public class HttpSendDynamicAwareTest {
     @Test
     public void testHttpsPort443ParseUri() {
         this.httpSendDynamicAware.setScheme("https");
-        DynamicAwareEntry entry = new DynamicAwareEntry("https://localhost:443/test", null, null,null);
+        DynamicAwareEntry entry = new DynamicAwareEntry("https://localhost:443/test", null, null, null);
         String[] result = httpSendDynamicAware.parseUri(entry);
         assertEquals("Parse should not port if https and port 443 specified", "localhost", result[0]);
     }