Browse Source

bug 41280 APT Task ignores memoryMaximumSize argument

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@492317 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 18 years ago
parent
commit
d09eeab9ef
2 changed files with 4 additions and 1 deletions
  1. +3
    -0
      WHATSNEW
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Apt.java

+ 3
- 0
WHATSNEW View File

@@ -28,6 +28,9 @@ Fixed bugs:
if not set) as it caused a BC problem.
Bugzilla report 41268.

* <apt> forks properly and so memory settings are picked up.
Bug report 41280.

Other changes:
--------------



+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Apt.java View File

@@ -110,7 +110,7 @@ public class Apt
public Apt() {
super();
super.setCompiler(AptExternalCompilerAdapter.class.getName());
setFork(true);
super.setFork(true);
}

/**


Loading…
Cancel
Save