Skip to content

Commit fd5f201

Browse files
committed
Add missing spaces to an if condition to aid readability.
1 parent 75922df commit fd5f201

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
@@ -121,7 +121,7 @@ public boolean start() throws Exception {
121121
newTemplate.setAnnotations(step.getAnnotations());
122122
newTemplate.setListener(getContext().get(TaskListener.class));
123123
newTemplate.setYamlMergeStrategy(step.getYamlMergeStrategy());
124-
if(run!=null) {
124+
if(run != null) {
125125
String url = cloud.getJenkinsUrlOrNull();
126126
if(url != null) {
127127
newTemplate.getAnnotations().add(new PodAnnotation("buildUrl", url + run.getUrl()));

0 commit comments

Comments
 (0)