do the workthrowsBuildException if P4View is null if (P4View == null) { throw new BuildException("No view specified to reopen"); } execP4Command("-s reopen -c " + toChange + " " + P4View, new SimpleP4OutputHandler(this));
if (P4View == null) { throw new BuildException("No view specified to reopen"); } execP4Command("-s reopen -c " + toChange + " " + P4View, new SimpleP4OutputHandler(this));
The changelist to move files to; required.paramtoChange new change list numberthrowsBuildException if the change parameter is null or empty if (toChange == null || toChange.equals("")) { throw new BuildException("P4Reopen: tochange cannot be null or empty"); } this.toChange = toChange;
if (toChange == null || toChange.equals("")) { throw new BuildException("P4Reopen: tochange cannot be null or empty"); } this.toChange = toChange;