Skip to content

Commit

Permalink
[JENKINS-35364] Fix use of StringUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
unguiculus committed Jun 6, 2016
1 parent 395a89f commit 78ae146
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 78ae146

Please sign in to comment.