Repository: flex-falcon Updated Branches: refs/heads/develop 3afc794b7 -> afe290ea6
need to upgrade this as well Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/afe290ea Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/afe290ea Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/afe290ea Branch: refs/heads/develop Commit: afe290ea6096c9e2e6c6b227eb4e7c2f759d1711 Parents: 3afc794 Author: Alex Harui <[email protected]> Authored: Tue Oct 20 14:59:00 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Tue Oct 20 14:59:00 2015 -0700 ---------------------------------------------------------------------- flex-compiler-oem/src/flex2/tools/MxmlJSC.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/afe290ea/flex-compiler-oem/src/flex2/tools/MxmlJSC.java ---------------------------------------------------------------------- diff --git a/flex-compiler-oem/src/flex2/tools/MxmlJSC.java b/flex-compiler-oem/src/flex2/tools/MxmlJSC.java index 9ff8381..293c3ea 100644 --- a/flex-compiler-oem/src/flex2/tools/MxmlJSC.java +++ b/flex-compiler-oem/src/flex2/tools/MxmlJSC.java @@ -32,8 +32,8 @@ import org.apache.flex.compiler.internal.driver.mxml.vf2js.MXMLVF2JSBackend; import org.apache.flex.compiler.problems.ICompilerProblem; import java.lang.reflect.InvocationTargetException; -import java.util.HashSet; -import java.util.Set; +import java.util.ArrayList; +import java.util.List; public class MxmlJSC implements ProblemQueryProvider { @@ -81,7 +81,7 @@ public class MxmlJSC implements ProblemQueryProvider { break; } - final Set<ICompilerProblem> problems = new HashSet<ICompilerProblem>(); + final List<ICompilerProblem> problems = new ArrayList<ICompilerProblem>(); return getCompilerInstance(backend).mainNoExit(args, problems, false); }
