Skip to content

Commit

Permalink
Fix(Kubernetes): Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Jan 7, 2025
1 parent 3b405ef commit 70cbf36
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ private Kubernetes() {
System.getenv().getOrDefault("TEST_CLUSTER_CONTEXT", null)
);

client = new KubernetesClientBuilder().withConfig(new OpenShiftConfig(config)).build().adapt(OpenShiftClient.class);
client = new KubernetesClientBuilder()
.withConfig(new OpenShiftConfig(config))
.build()
.adapt(OpenShiftClient.class);
}

public static Kubernetes getInstance() {
Expand Down

0 comments on commit 70cbf36

Please sign in to comment.