Skip to content

Commit 50198fa

Browse files
committed
Merge branch '3.1.x'
2 parents 6029df3 + 0076ee4 commit 50198fa

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

spring-cloud-kubernetes-client-config/src/test/java/org/springframework/cloud/kubernetes/client/config/KubernetesClientConfigMapPropertySourceLocatorTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ public void locateShouldNotThrowExceptionOnFailureWhenFailFastIsDisabled(Capture
213213
assertThat(composite.getPropertySources()).hasSize(0);
214214
assertThat(output.getOut()).contains("Failed to load source:");
215215

216-
217216
}
218217

219218
}

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/main/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/Application.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
@SpringBootApplication
2727
@EnableScheduling
28-
public class Application {
28+
class Application {
2929

3030
public static void main(String[] args) {
3131
SpringApplication.run(Application.class, args);

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/main/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/EndpointNameAndNamespaceService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @author wind57
2929
*/
3030
@Service
31-
public class EndpointNameAndNamespaceService {
31+
class EndpointNameAndNamespaceService {
3232

3333
private List<EndpointNameAndNamespace> result;
3434

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/main/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/HeartBeatListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
* @author wind57
3232
*/
3333
@Component
34-
public class HeartBeatListener implements ApplicationListener<ApplicationEvent> {
34+
class HeartBeatListener implements ApplicationListener<ApplicationEvent> {
3535

3636
private final EndpointNameAndNamespaceService service;
3737

38-
public HeartBeatListener(EndpointNameAndNamespaceService service) {
38+
HeartBeatListener(EndpointNameAndNamespaceService service) {
3939
this.service = service;
4040
}
4141

spring-cloud-kubernetes-integration-tests/spring-cloud-kubernetes-fabric8-client-catalog-watcher/src/main/java/org/springframework/cloud/kubernetes/fabric8/catalog/watch/HeartbeatController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
import org.springframework.web.bind.annotation.RestController;
2424

2525
@RestController
26-
public class HeartbeatController {
26+
class HeartbeatController {
2727

2828
private final EndpointNameAndNamespaceService service;
2929

30-
public HeartbeatController(EndpointNameAndNamespaceService service) {
30+
HeartbeatController(EndpointNameAndNamespaceService service) {
3131
this.service = service;
3232
}
3333

3434
@GetMapping("/result")
35-
public List<EndpointNameAndNamespace> result() {
35+
List<EndpointNameAndNamespace> result() {
3636
return service.result();
3737
}
3838

0 commit comments

Comments
 (0)