You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/16 16:20:23 UTC

[5/5] git commit: [flex-falcon] [refs/heads/develop] - Made the default for the --strict-publish argument 'true', so the warning are for all to see, unless switched off with --strict-publish=false. Since we're down to the low tens of warnings, it's worth

Made the default for the --strict-publish argument 'true', so the warning are for all to see, unless switched off with --strict-publish=false. Since we're down to the low tens of warnings, it's worth to keep them showing so we eventually look into making them go away.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/f92dd51e
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/f92dd51e
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/f92dd51e

Branch: refs/heads/develop
Commit: f92dd51e9dbdb9b0ed4d9ccab236ac39eda2bb20
Parents: 7d26acf
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Sat Nov 16 16:04:25 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Sat Nov 16 16:04:25 2013 +0100

----------------------------------------------------------------------
 .../flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/f92dd51e/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java
index 4e04254..ae6a16c 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/goog/JSGoogConfiguration.java
@@ -109,7 +109,7 @@ public class JSGoogConfiguration extends JSConfiguration
     // 'strict-publish'
     //
 
-    private boolean strictPublish;
+    private boolean strictPublish = true;
 
     public boolean getStrictPublish()
     {