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);
}