This is an automated email from the ASF dual-hosted git repository. aldettinger 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 ef0afff Fixed CS ef0afff is described below commit ef0afff0b27fd6815dfde216ff7b85ac7f3b27df Author: aldettinger <aldettin...@gmail.com> AuthorDate: Tue Jun 5 21:50:24 2018 +0200 Fixed CS --- .../CamelCloudZookeeperServiceRegistryTest.java | 9 +++++---- .../cloud/CamelSpringCloudServiceRegistryTest.java | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/components/camel-spring-cloud-zookeeper/src/test/java/org/apache/camel/spring/cloud/zookeeper/CamelCloudZookeeperServiceRegistryTest.java b/components/camel-spring-cloud-zookeeper/src/test/java/org/apache/camel/spring/cloud/zookeeper/CamelCloudZookeeperServiceRegistryTest.java index 4c62084..bd18b9d 100644 --- a/components/camel-spring-cloud-zookeeper/src/test/java/org/apache/camel/spring/cloud/zookeeper/CamelCloudZookeeperServiceRegistryTest.java +++ b/components/camel-spring-cloud-zookeeper/src/test/java/org/apache/camel/spring/cloud/zookeeper/CamelCloudZookeeperServiceRegistryTest.java @@ -42,10 +42,11 @@ import org.springframework.util.SocketUtils; import static org.assertj.core.api.Assertions.assertThat; public class CamelCloudZookeeperServiceRegistryTest { - protected final static String SERVICE_ID = UUID.randomUUID().toString(); - protected final static String SERVICE_NAME = "my-service"; - protected final static String SERVICE_HOST = "localhost"; - protected final static int SERVICE_PORT = SocketUtils.findAvailableTcpPort(); + + protected static final String SERVICE_ID = UUID.randomUUID().toString(); + protected static final String SERVICE_NAME = "my-service"; + protected static final String SERVICE_HOST = "localhost"; + protected static final int SERVICE_PORT = SocketUtils.findAvailableTcpPort(); @Rule public final TestName testName = new TestName(); diff --git a/components/camel-spring-cloud/src/test/java/org/apache/camel/spring/cloud/CamelSpringCloudServiceRegistryTest.java b/components/camel-spring-cloud/src/test/java/org/apache/camel/spring/cloud/CamelSpringCloudServiceRegistryTest.java index f62843d..fbdfa26 100644 --- a/components/camel-spring-cloud/src/test/java/org/apache/camel/spring/cloud/CamelSpringCloudServiceRegistryTest.java +++ b/components/camel-spring-cloud/src/test/java/org/apache/camel/spring/cloud/CamelSpringCloudServiceRegistryTest.java @@ -1,3 +1,19 @@ +/** + * 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.spring.cloud; import java.util.ArrayList; -- To stop receiving notification emails like this one, please contact aldettin...@apache.org.