Browse Source

Somehow lost the jvm attribute of <java> with last update.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267855 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 25 years ago
parent
commit
89fcd5b57a
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      src/main/org/apache/tools/ant/taskdefs/Java.java

+ 7
- 0
src/main/org/apache/tools/ant/taskdefs/Java.java View File

@@ -179,6 +179,13 @@ public class Java extends Task {
return cmdl.createVmArgument();
}

/**
* Set the command used to start the VM (only if fork==false).
*/
public void setJvm(String s) {
cmdl.setVm(s);
}
/**
* Throw a BuildException if process returns non 0.
*/


Loading…
Cancel
Save