In https://github.com/hpcloud/cloudfoundry-jenkins/blob/master/src/main/java/com/hpe/cloudfoundryjenkins/DeploymentInfo.java your checking for equality to `""` like this: ``` this.command = jenkinsConfig.command; if (command.equals("")) { command = null; } ``` You should inverse the check like this ``` this.command = jenkinsConfig.command; if ("".equals(command)) { command = null; } ``` Cause otherwise you will cause NPEs (which I'm getting)
In https://github.com/hpcloud/cloudfoundry-jenkins/blob/master/src/main/java/com/hpe/cloudfoundryjenkins/DeploymentInfo.java your checking for equality to
""like this:You should inverse the check like this
Cause otherwise you will cause NPEs (which I'm getting)