Skip to content

Commit 90bee03

Browse files
author
krull
committed
JENKINS-43574: replace whitespaces with tabs
1 parent 1e440bf commit 90bee03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/org/jenkins/plugins/lockableresources/RequiredResourcesProperty.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@ public RequiredResourcesProperty(String resourceNames,
4545
super();
4646

4747
if (resourceNames == null || resourceNames.trim().isEmpty()) {
48-
this.resourceNames = null;
48+
this.resourceNames = null;
4949
} else {
50-
this.resourceNames = resourceNames.trim();
50+
this.resourceNames = resourceNames.trim();
5151
}
5252
if (resourceNamesVar == null || resourceNamesVar.trim().isEmpty()) {
53-
this.resourceNamesVar = null;
53+
this.resourceNamesVar = null;
5454
} else {
55-
this.resourceNamesVar = resourceNamesVar.trim();
55+
this.resourceNamesVar = resourceNamesVar.trim();
5656
}
5757
if (resourceNumber == null || resourceNumber.trim().isEmpty()) {
58-
this.resourceNumber = null;
58+
this.resourceNumber = null;
5959
} else {
60-
this.resourceNumber = resourceNumber.trim();
60+
this.resourceNumber = resourceNumber.trim();
6161
}
6262
String labelNamePreparation = (labelName == null || labelName.trim().isEmpty()) ? null : labelName.trim();
6363
if (resourceMatchScript != null) {

0 commit comments

Comments
 (0)