VF2JS no longer needs to run on a modified temp project Signed-off-by: Erik de Bruin <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/11d72ec2 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/11d72ec2 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/11d72ec2 Branch: refs/heads/develop Commit: 11d72ec279baa71c93fa2164790e607123943acb Parents: dfdadcb Author: Erik de Bruin <[email protected]> Authored: Fri Oct 31 17:14:13 2014 +0100 Committer: Erik de Bruin <[email protected]> Committed: Fri Oct 31 17:44:03 2014 +0100 ---------------------------------------------------------------------- .../org/apache/flex/compiler/clients/MXMLJSC.java | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/11d72ec2/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java b/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java index 81f7f0d..e08cd6c 100644 --- a/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java +++ b/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java @@ -77,7 +77,6 @@ import org.apache.flex.compiler.targets.ITarget; import org.apache.flex.compiler.targets.ITarget.TargetType; import org.apache.flex.compiler.targets.ITargetSettings; import org.apache.flex.compiler.units.ICompilationUnit; -import org.apache.flex.compiler.utils.VF2JSProjectUtils; import org.apache.flex.utils.FileUtils; import org.apache.flex.utils.FilenameNormalization; @@ -277,13 +276,13 @@ public class MXMLJSC getTargetType().getExtension()); } - String projectFilePath = adjustedArgs[adjustedArgs.length - 1]; - - String newProjectFilePath = VF2JSProjectUtils - .createTempProject(projectFilePath, - isFlashBuilderProject); - - adjustedArgs[adjustedArgs.length - 1] = newProjectFilePath; + //String projectFilePath = adjustedArgs[adjustedArgs.length - 1]; + // + //String newProjectFilePath = VF2JSProjectUtils + // .createTempProject(projectFilePath, + // isFlashBuilderProject); + // + //adjustedArgs[adjustedArgs.length - 1] = newProjectFilePath; break; default:
