Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #286 from unguiculus/JENKINS-35364
[JENKINS-35364] Fix use of StringUtils
  • Loading branch information
rsandell committed Jun 7, 2016
2 parents 395a89f + 78ae146 commit 33957ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -43,7 +43,7 @@
import hudson.model.ParametersDefinitionProperty;
import jenkins.model.Jenkins;
import jenkins.model.ParameterizedJobMixIn;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down
Expand Up @@ -30,7 +30,7 @@

import java.util.concurrent.TimeUnit;

import org.apache.commons.lang3.time.StopWatch;
import org.apache.commons.lang.time.StopWatch;
import org.apache.sshd.SshServer;
import org.junit.After;
import org.junit.Before;
Expand Down
Expand Up @@ -53,7 +53,7 @@
import org.jenkinsci.plugins.workflow.job.WorkflowJob;
import org.jvnet.hudson.test.JenkinsRule;

import static org.apache.commons.lang3.StringUtils.isBlank;
import static org.apache.commons.lang.StringUtils.isBlank;

/**
* A utility class for test.
Expand Down

0 comments on commit 33957ae

Please sign in to comment.