File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/main/java/jenkins/scm/cvs Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.jenkins-ci.plugins</groupId >
77 <artifactId >plugin</artifactId >
8- <version >5.2102.v5f5fe09fccf1 </version >
8+ <version >6.2116.v7501b_67dc517 </version >
99 <relativePath />
1010 </parent >
1111
2727 <spotbugs .effort>Max</spotbugs .effort>
2828 <spotbugs .threshold>Low</spotbugs .threshold>
2929 <ban-junit4-imports .skip>false</ban-junit4-imports .skip>
30+ <ban-commons-lang-2 .skip>false</ban-commons-lang-2 .skip>
3031 </properties >
3132
3233
Original file line number Diff line number Diff line change 66import hudson .model .Queue ;
77import hudson .model .queue .QueueListener ;
88import hudson .triggers .SCMTrigger ;
9- import org . apache . commons . lang . StringUtils ;
9+
1010
1111import java .util .Collections ;
1212import java .util .Date ;
@@ -76,9 +76,9 @@ public void onLeaveWaiting(Queue.WaitingItem wi) {
7676 remoteHosts = Collections .emptySet ();
7777 } else {
7878 remoteHosts = new HashSet <String >();
79- for (String host : StringUtils .split (REMOTE_HOSTS , ", " )) {
79+ for (String host : REMOTE_HOSTS .split (", " )) {
8080 final String h = host .trim ();
81- if (!StringUtils .isBlank (h ))
81+ if (!h .isBlank ())
8282 remoteHosts .add (h );
8383 }
8484 }
You can’t perform that action at this time.
0 commit comments