From 18094d3d58aab29c6cb85afea04b2f001e0eaeaf Mon Sep 17 00:00:00 2001 From: Conor MacNeill Date: Sun, 16 Feb 2003 01:46:20 +0000 Subject: [PATCH] Minor edit git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274073 13f79535-47bb-0310-9956-ffa450edef68 --- .../taskdefs/optional/ejb/WeblogicDeploymentTool.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java b/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java index 0fae6a144..8b9270cec 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java @@ -579,9 +579,10 @@ public class WeblogicDeploymentTool extends GenericDeploymentTool { javaTask.createArg().setValue("-keepgenerated"); } if (compiler == null) { - // try to use the compiler specified by build.compiler. Right now we are just going - // to allow Jikes - String buildCompiler = getTask().getProject().getProperty("build.compiler"); + // try to use the compiler specified by build.compiler. + // Right now we are just going to allow Jikes + String buildCompiler + = getTask().getProject().getProperty("build.compiler"); if (buildCompiler != null && buildCompiler.equals("jikes")) { javaTask.createArg().setValue("-compiler"); @@ -627,7 +628,8 @@ public class WeblogicDeploymentTool extends GenericDeploymentTool { } } catch (Exception e) { // Have to catch this because of the semantics of calling main() - String msg = "Exception while calling " + ejbcClassName + ". Details: " + e.toString(); + String msg = "Exception while calling " + ejbcClassName + + ". Details: " + e.toString(); throw new BuildException(msg, e); }