Skip to content

Commit e3af38c

Browse files
committed
checkstyle
Signed-off-by: wind57 <[email protected]>
1 parent 200f498 commit e3af38c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spring-cloud-kubernetes-fabric8-loadbalancer/src/main/java/org/springframework/cloud/kubernetes/fabric8/loadbalancer/Fabric8ServicesListSupplier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ else if (!discoveryProperties.namespaces().isEmpty()) {
8484
}
8585
else {
8686
LOG.debug(() -> "did not find service with name : " + serviceName + " in namespace : "
87-
+ selectiveNamespace);
87+
+ selectiveNamespace);
8888
}
8989
});
9090
}
9191
else {
9292
String namespace = Fabric8Utils.getApplicationNamespace(kubernetesClient, null, "loadbalancer-service",
93-
namespaceProvider);
93+
namespaceProvider);
9494
LOG.debug(() -> "discovering services in namespace : " + namespace);
9595
Service service = kubernetesClient.services().inNamespace(namespace).withName(serviceName).get();
9696
if (service != null) {

spring-cloud-kubernetes-fabric8-loadbalancer/src/test/java/org/springframework/cloud/kubernetes/fabric8/loadbalancer/it/mode/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2025 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-cloud-kubernetes-fabric8-loadbalancer/src/test/java/org/springframework/cloud/kubernetes/fabric8/loadbalancer/it/mode/LoadBalancerConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2025 the original author or authors.
2+
* Copyright 2013-present the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)