Skip to content

Commit

Permalink
PAYARA-243 FindBug fix
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.java.net/svn/glassfish~svn/trunk/main@63888 6f3ba3e3-413c-0410-a8aa-90bee3ab43b5
  • Loading branch information
[email protected] authored and Pandrex247 committed Jun 8, 2015
1 parent 33dc3fe commit a1cbcfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public DFProgressObject deploy(Target[] targets, URI source, URI deploymentPlan,
ensureConnected();
targets = prepareTargets(targets);
ProgressObjectImpl po = new ProgressObjectImpl(targets);
if(deploymentOptions.get(DFDeploymentProperties.DEFAULT_REDEPLOY)=="true")
if(deploymentOptions.get(DFDeploymentProperties.DEFAULT_REDEPLOY).equals("true"))
po.setCommand(CommandType.REDEPLOY,null);
else
po.setCommand(CommandType.DISTRIBUTE,null);
Expand Down

0 comments on commit a1cbcfd

Please sign in to comment.