Skip to content

Commit b8ba0e0

Browse files
committed
Add missing spaces to an if condition to aid readability.
1 parent ff4ce52 commit b8ba0e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/PodTemplateStepExecution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public boolean start() throws Exception {
120120
newTemplate.setAnnotations(step.getAnnotations());
121121
newTemplate.setListener(getContext().get(TaskListener.class));
122122
newTemplate.setYamlMergeStrategy(step.getYamlMergeStrategy());
123-
if(run!=null) {
123+
if(run != null) {
124124
String url = cloud.getJenkinsUrlOrNull();
125125
if(url != null) {
126126
newTemplate.getAnnotations().add(new PodAnnotation("buildUrl", url + run.getUrl()));

0 commit comments

Comments
 (0)