Return-Path: Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Delivered-To: mailing list dev@ant.apache.org Received: (qmail 41105 invoked by uid 500); 16 Feb 2003 01:46:12 -0000 Received: (qmail 41102 invoked from network); 16 Feb 2003 01:46:12 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 16 Feb 2003 01:46:12 -0000 Received: (qmail 13346 invoked by uid 1142); 16 Feb 2003 01:46:20 -0000 Date: 16 Feb 2003 01:46:20 -0000 Message-ID: <20030216014620.13345.qmail@icarus.apache.org> From: conor@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb WeblogicDeploymentTool.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N conor 2003/02/15 17:46:20 Modified: src/main/org/apache/tools/ant/taskdefs/optional/ejb WeblogicDeploymentTool.java Log: Minor edit Revision Changes Path 1.48 +6 -4 ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java Index: WeblogicDeploymentTool.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/WeblogicDeploymentTool.java,v retrieving revision 1.47 retrieving revision 1.48 diff -u -w -u -r1.47 -r1.48 --- WeblogicDeploymentTool.java 10 Feb 2003 14:13:52 -0000 1.47 +++ WeblogicDeploymentTool.java 16 Feb 2003 01:46:20 -0000 1.48 @@ -579,9 +579,10 @@ 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 @@ } } 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); }