You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/09/07 09:46:58 UTC

[royale-asjs] branch develop updated: Removed goog.DEBUG imports

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 42e2c8a  Removed goog.DEBUG imports
42e2c8a is described below

commit 42e2c8a7d7c47936b6c9845f4161b923e48ded46
Author: Harbs <ha...@in-tools.com>
AuthorDate: Fri Sep 7 12:46:50 2018 +0300

    Removed goog.DEBUG imports
---
 .../src/main/royale/mx/charts/AreaChart.as         |   4 -
 .../src/main/royale/mx/charts/series/PieSeries.as  |   3 -
 .../main/royale/mx/collections/ArrayCollection.as  |   3 -
 .../src/main/royale/mx/collections/ArrayList.as    |   3 -
 .../MXRoyale/src/main/royale/mx/containers/Box.as  |   4 -
 .../src/main/royale/mx/containers/DividedBox.as    |   3 -
 .../src/main/royale/mx/containers/Panel.as         |   4 -
 .../src/main/royale/mx/containers/PanelTitleBar.as |   4 -
 .../src/main/royale/mx/containers/TabNavigator.as  |   4 -
 .../main/royale/mx/controls/AdvancedDataGrid.as    |   4 -
 .../MXRoyale/src/main/royale/mx/controls/Alert.as  |   3 -
 .../MXRoyale/src/main/royale/mx/controls/Button.as |   4 +-
 .../src/main/royale/mx/controls/CheckBox.as        |   1 -
 .../src/main/royale/mx/controls/ComboBase.as       |  31 ++--
 .../src/main/royale/mx/controls/ComboBox.as        |   4 -
 .../src/main/royale/mx/controls/DataGrid.as        |   4 -
 .../src/main/royale/mx/controls/DateChooser.as     |   3 -
 .../MXRoyale/src/main/royale/mx/controls/Image.as  |   4 -
 .../MXRoyale/src/main/royale/mx/controls/Label.as  |   4 -
 .../src/main/royale/mx/controls/LinkButton.as      |   3 -
 .../MXRoyale/src/main/royale/mx/controls/List.as   |   4 -
 .../src/main/royale/mx/controls/NumericStepper.as  |   3 -
 .../src/main/royale/mx/controls/ProgressBar.as     |   6 +-
 .../src/main/royale/mx/controls/RadioButton.as     |   1 -
 .../main/royale/mx/controls/RadioButtonGroup.as    |   3 -
 .../MXRoyale/src/main/royale/mx/controls/TabBar.as |   1 -
 .../MXRoyale/src/main/royale/mx/controls/Text.as   |   1 -
 .../src/main/royale/mx/controls/TextArea.as        |   1 -
 .../src/main/royale/mx/controls/TextInput.as       |   2 +-
 .../MXRoyale/src/main/royale/mx/controls/Tree.as   |   4 -
 .../AdvancedDataGridColumn.as                      |   4 -
 .../royale/mx/controls/listClasses/BaseListData.as |   4 -
 .../royale/mx/controls/listClasses/ListBase.as     |   4 -
 .../mx/controls/treeClasses/TreeItemRenderer.as    |   4 -
 .../src/main/royale/mx/core/Application.as         |   4 -
 .../MXRoyale/src/main/royale/mx/core/Container.as  |   1 -
 .../src/main/royale/mx/core/UIComponent.as         | 177 +++++++--------------
 .../src/main/royale/mx/events/CollectionEvent.as   |   3 -
 .../src/main/royale/mx/managers/SystemManager.as   |   4 -
 .../src/main/royale/mx/rpc/events/ResultEvent.as   |   3 -
 .../src/main/royale/mx/styles/StyleManager.as      |   4 -
 .../src/main/royale/mx/styles/StyleManagerImpl.as  |   4 -
 .../src/main/royale/mx/utils/Base64Decoder.as      |   4 -
 .../src/main/royale/mx/utils/Base64Encoder.as      |   4 -
 .../src/main/royale/mx/utils/ObjectProxy.as        |   3 -
 .../src/main/royale/mx/utils/ObjectUtil.as         |   3 -
 46 files changed, 70 insertions(+), 283 deletions(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/charts/AreaChart.as b/frameworks/projects/MXRoyale/src/main/royale/mx/charts/AreaChart.as
index 006e211..e1b1021 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/charts/AreaChart.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/charts/AreaChart.as
@@ -25,10 +25,6 @@ import mx.graphics.SolidColor;
 import mx.graphics.SolidColorStroke;
 import mx.graphics.Stroke;
 import mx.charts.chartClasses.ChartBase;
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 /*
 import flash.utils.Dictionary;
 
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/charts/series/PieSeries.as b/frameworks/projects/MXRoyale/src/main/royale/mx/charts/series/PieSeries.as
index 68a64ac..cb3e513 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/charts/series/PieSeries.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/charts/series/PieSeries.as
@@ -19,9 +19,6 @@
 
 package mx.charts.series
 {
-	COMPILE::JS {
-		import goog.DEBUG;
-	}
 	import org.apache.royale.geom.Point;
 	import org.apache.royale.geom.Rectangle;
 	import mx.charts.chartClasses.IAxis;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayCollection.as b/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayCollection.as
index d0a7bba..14892e5 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayCollection.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayCollection.as
@@ -19,9 +19,6 @@
 
 package mx.collections
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 /*
 import flash.system.ApplicationDomain;
 import flash.utils.IDataInput;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayList.as b/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayList.as
index 1a2b19e..7923f79 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayList.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/collections/ArrayList.as
@@ -19,9 +19,6 @@
 
 package mx.collections 
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 import mx.events.CollectionEvent;
 import mx.events.CollectionEventKind;
 import mx.events.PropertyChangeEvent;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Box.as b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Box.as
index 3a534b7..923d0dd 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Box.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Box.as
@@ -24,10 +24,6 @@ package mx.containers
 	import org.apache.royale.html.beads.layouts.HorizontalLayout;
 	import org.apache.royale.html.beads.layouts.VerticalLayout;
 
-COMPILE::JS
-{
-	import goog.DEBUG;
-}
 /*
 import flash.events.Event;
 */
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/DividedBox.as b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/DividedBox.as
index 414f8cc..81a9ec9 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/DividedBox.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/DividedBox.as
@@ -19,9 +19,6 @@
 
 package mx.containers
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 /*
 import flash.display.DisplayObject;
 import flash.events.Event;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Panel.as b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Panel.as
index ec50dfd..4884d7c 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Panel.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/Panel.as
@@ -19,10 +19,6 @@
 
 package mx.containers
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 /*
 import flash.display.DisplayObject;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/PanelTitleBar.as b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/PanelTitleBar.as
index 9440f39..1fd703b 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/PanelTitleBar.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/PanelTitleBar.as
@@ -19,10 +19,6 @@
 
 package mx.containers
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 import mx.core.UIComponent;
 
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/TabNavigator.as b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/TabNavigator.as
index 9b7eebf..181f59a 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/containers/TabNavigator.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/containers/TabNavigator.as
@@ -19,10 +19,6 @@
 
 package mx.containers
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 import mx.containers.beads.TabNavigatorView;
 import mx.controls.Button;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/AdvancedDataGrid.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/AdvancedDataGrid.as
index 549e31c..0ec02f9 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/AdvancedDataGrid.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/AdvancedDataGrid.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
     /* import flash.display.DisplayObject;
     import flash.display.Graphics;
     import flash.display.Shape;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Alert.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Alert.as
index 556e0a4..73fd6e4 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Alert.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Alert.as
@@ -20,9 +20,6 @@
 package mx.controls
 {
 
-	COMPILE::JS {
-		import goog.DEBUG;
-	}
 	import org.apache.royale.events.Event;
 	import org.apache.royale.events.CloseEvent;
 	import mx.containers.Panel;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as
index f9922f2..4394b85 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Button.as
@@ -21,7 +21,6 @@ package mx.controls
 {
 COMPILE::JS
 {
-    import goog.DEBUG;
 	import org.apache.royale.core.WrappedHTMLElement;
 	import org.apache.royale.events.BrowserEvent;
 	import org.apache.royale.html.util.addElementToWrapper;
@@ -631,8 +630,7 @@ public class Button extends UIComponent implements IDataRenderer
 	override public function set enabled(value:Boolean):void
 	{
 		// TBD: redirect to bead
-		if (GOOG::DEBUG)
-			trace("Button.enabled not implemented properly.");
+		trace("Button.enabled not implemented properly.");
 	}
 	
 	
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/CheckBox.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/CheckBox.as
index 0d093f1..2e97164 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/CheckBox.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/CheckBox.as
@@ -22,7 +22,6 @@ package mx.controls
 
 COMPILE::JS
 {
-    import goog.DEBUG;
 
 	import org.apache.royale.core.UIBase;
 	import org.apache.royale.core.WrappedHTMLElement;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
index 9716b7d..1079ae3 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBase.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 COMPILE::SWF
 {
     import flash.display.InteractiveObject;    
@@ -411,15 +407,13 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     override public function get enabled():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.enabled not implemented");
+        trace("ComboBox.enabled not implemented");
         return true;
     }
     
     override public function set enabled(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.enabled not implemented");
+        trace("ComboBox.enabled not implemented");
     }
 
     //--------------------------------------------------------------------------
@@ -503,8 +497,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     public function get editable():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.editable not implemented");
+        trace("ComboBox.editable not implemented");
         return true;
     }
 
@@ -513,8 +506,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     public function set editable(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.editable not implemented");
+        trace("ComboBox.editable not implemented");
     }
 
 
@@ -534,8 +526,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      **/
     public function get imeMode():String
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.imeMode not implemented");
+        trace("ComboBox.imeMode not implemented");
         return "";
     }
 
@@ -544,8 +535,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     public function set imeMode(value:String):void
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.imeMode not implemented");
+        trace("ComboBox.imeMode not implemented");
     }
 
     //----------------------------------
@@ -567,8 +557,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     public function get restrict():String
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.restrict not implemented");
+        trace("ComboBox.restrict not implemented");
         return "";
     }
 
@@ -577,8 +566,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     public function set restrict(value:String):void
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.restrict not implemented");
+        trace("ComboBox.restrict not implemented");
     }
 
     //----------------------------------
@@ -707,8 +695,7 @@ public class ComboBase extends UIComponent implements /*IIMESupport,*/ IFocusMan
      */
     public function set text(value:String):void
     {
-        if (GOOG::DEBUG)
-            trace("ComboBox.text not implemented");
+        trace("ComboBox.text not implemented");
     }
     
     //----------------------------------
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBox.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBox.as
index ff9d35a..0681347 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBox.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ComboBox.as
@@ -20,10 +20,6 @@
 package mx.controls
 {
 import org.apache.royale.html.beads.IComboBoxView;
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 COMPILE::SWF
 {
 }
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as
index 2666643..9c93e0e 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DataGrid.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 /*
 import flash.display.DisplayObject;
 import flash.display.DisplayObjectContainer;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateChooser.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateChooser.as
index f7b82ac..7ea74f7 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateChooser.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/DateChooser.as
@@ -19,9 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 	
 	import mx.core.UIComponent;
 	import mx.core.mx_internal;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Image.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Image.as
index 9fa266f..d185ef0 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Image.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Image.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-	import goog.DEBUG;
-}
 import org.apache.royale.core.IImage;
 import org.apache.royale.core.IImageModel;
 COMPILE::JS {
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Label.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Label.as
index 545d6b6..103bdb2 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Label.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Label.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-	import goog.DEBUG;
-}
 
 /*
 import flash.display.DisplayObject;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/LinkButton.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/LinkButton.as
index 1377e9a..8baa34c 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/LinkButton.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/LinkButton.as
@@ -19,9 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 
 /**
  *  The LinkButton control is a borderless Button control
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/List.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/List.as
index 30c8e22..238e43a 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/List.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/List.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 /*
 import flash.display.DisplayObject;
 import flash.display.DisplayObjectContainer;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/NumericStepper.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/NumericStepper.as
index 1b27747..5be572f 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/NumericStepper.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/NumericStepper.as
@@ -19,9 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 	
 import org.apache.royale.core.IRangeModel;
 import org.apache.royale.events.Event;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ProgressBar.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ProgressBar.as
index 1098605..8f0905b 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ProgressBar.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/ProgressBar.as
@@ -19,9 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 import org.apache.royale.events.Event;
 import org.apache.royale.events.ProgressEvent;
 import org.apache.royale.events.IEventDispatcher;
@@ -824,8 +821,7 @@ public class ProgressBar extends UIComponent //implements IFontContextComponent
      */
     public function set source(value:Object):void
     {
-		if (GOOG::DEBUG)
-			trace("set source is not implemented");
+		trace("set source is not implemented");
 //        if (value is String)
 //        {
 //            _stringSource = String(value);
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButton.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButton.as
index 5d052fa..aa3f1f4 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButton.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButton.as
@@ -21,7 +21,6 @@ package mx.controls
 {
 COMPILE::JS
 {
-    import goog.DEBUG;
     import window.Text;
     import org.apache.royale.core.WrappedHTMLElement;
     import org.apache.royale.html.supportClasses.RadioButtonIcon;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButtonGroup.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButtonGroup.as
index cc8b73f..0d6b74e 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButtonGroup.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/RadioButtonGroup.as
@@ -19,9 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 import org.apache.royale.core.IDocument;
 import org.apache.royale.events.Event;
 import org.apache.royale.events.EventDispatcher;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TabBar.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TabBar.as
index 27976e4..dbe8342 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TabBar.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TabBar.as
@@ -21,7 +21,6 @@ package mx.controls
 {
 COMPILE::JS
 {
-    import goog.DEBUG;
 	import org.apache.royale.core.WrappedHTMLElement;
 }
 import mx.core.UIComponent;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Text.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Text.as
index 672ec1f..573a4e5 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Text.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Text.as
@@ -20,7 +20,6 @@
 package mx.controls
 {
 COMPILE::JS {
-	import goog.DEBUG;
 	import goog.events;
 	import org.apache.royale.core.WrappedHTMLElement;
 	import org.apache.royale.html.util.addElementToWrapper;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextArea.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextArea.as
index 8558e75..8a8296b 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextArea.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextArea.as
@@ -20,7 +20,6 @@
 package mx.controls
 {
 COMPILE::JS {
-	import goog.DEBUG;
 	import goog.events;
 	import org.apache.royale.core.WrappedHTMLElement;
 	import org.apache.royale.html.util.addElementToWrapper;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
index ea8d713..3f88ebe 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
@@ -21,7 +21,7 @@ package mx.controls
 {
 COMPILE::JS
 {
-	import goog.DEBUG;
+	import goog.events;
 	import org.apache.royale.core.WrappedHTMLElement;
 	import org.apache.royale.html.util.addElementToWrapper;
 }
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Tree.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Tree.as
index e60ef17..ee334bb 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Tree.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/Tree.as
@@ -19,10 +19,6 @@
 
 package mx.controls
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 /* import flash.display.DisplayObject;
 import flash.display.Graphics;
 import flash.display.Shape;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/advancedDataGridClasses/AdvancedDataGridColumn.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/advancedDataGridClasses/AdvancedDataGridColumn.as
index 1d34f50..0fab09c 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/advancedDataGridClasses/AdvancedDataGridColumn.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/advancedDataGridClasses/AdvancedDataGridColumn.as
@@ -42,10 +42,6 @@ import mx.core.mx_internal;
 import mx.utils.StringUtil;
 
 use namespace mx_internal;
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 //--------------------------------------
 //  Styles
 //--------------------------------------
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/BaseListData.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/BaseListData.as
index 69d96ef..cc3dfd3 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/BaseListData.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/BaseListData.as
@@ -19,10 +19,6 @@
 
 package mx.controls.listClasses
 {
-COMPILE::JS
-{
-	import goog.DEBUG;
-}
 
 import org.apache.royale.events.EventDispatcher;
 /*
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
index 2ba0ac8..1d723cc 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/ListBase.as
@@ -17,11 +17,7 @@
 //
 ////////////////////////////////////////////////////////////////////////////////
 package mx.controls.listClasses
-{   
-COMPILE::JS
 {
-    import goog.DEBUG;
-}
 
 import mx.core.EdgeMetrics;
 import mx.core.IFactory;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/treeClasses/TreeItemRenderer.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/treeClasses/TreeItemRenderer.as
index 6734b13..4e8f5cd 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/treeClasses/TreeItemRenderer.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/treeClasses/TreeItemRenderer.as
@@ -46,10 +46,6 @@ import mx.managers.ISystemManager;
 import mx.utils.PopUpUtil;
 
  */
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 import mx.core.IFlexDisplayObject;
 import mx.controls.listClasses.BaseListData;
 import org.apache.royale.html.supportClasses.TreeItemRenderer;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/Application.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/Application.as
index aa6abc9..59fe205 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/Application.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/Application.as
@@ -19,10 +19,6 @@
 
 package mx.core
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 /*
 import flash.display.DisplayObject;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/Container.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/Container.as
index 1b65bc2..e07ed49 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/Container.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/Container.as
@@ -45,7 +45,6 @@ package mx.core
 
 COMPILE::JS
 {
-    import goog.DEBUG;
 	import org.apache.royale.core.WrappedHTMLElement;
 	import org.apache.royale.html.util.addElementToWrapper;
 }
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
index d433cc6..9d843b0 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
@@ -18,11 +18,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 
 package mx.core
-{ 
-COMPILE::JS
 {
-    import goog.DEBUG;
-}
 /*
 import flash.accessibility.Accessibility;
 import flash.accessibility.AccessibilityProperties;
@@ -739,15 +735,13 @@ public class UIComponent extends UIBase
     
     public function get accessibilityEnabled():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("accessibilityEnabled not implemented");
+        trace("accessibilityEnabled not implemented");
         return false;
     }
     
     public function set accessibilityEnabled(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("accessibilityEnabled not implemented");
+        trace("accessibilityEnabled not implemented");
     }
     
     /**
@@ -762,8 +756,7 @@ public class UIComponent extends UIBase
     { override }
     public function get useHandCursor():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("useHandCursor not implemented");
+        trace("useHandCursor not implemented");
         return false;
     }
     
@@ -771,8 +764,7 @@ public class UIComponent extends UIBase
     { override }
     public function set useHandCursor(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("useHandCursor not implemented");
+        trace("useHandCursor not implemented");
     }
 	
 	 /**
@@ -786,16 +778,14 @@ public class UIComponent extends UIBase
     COMPILE::JS
     public function get mouseEnabled():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("mouseEnabled not implemented");
+        trace("mouseEnabled not implemented");
         return false;
     }
     
     COMPILE::JS
     public function set mouseEnabled(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("mouseEnabled not implemented");
+        trace("mouseEnabled not implemented");
     }
 	
 	 /**
@@ -809,16 +799,14 @@ public class UIComponent extends UIBase
     COMPILE::JS
     public function get mouseChildren():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("mouseChildren not implemented");
+        trace("mouseChildren not implemented");
         return false;
     }
     
     COMPILE::JS
     public function set mouseChildren(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("mouseChildren not implemented");
+        trace("mouseChildren not implemented");
     }
 	
 	
@@ -834,8 +822,7 @@ public class UIComponent extends UIBase
     { override }
     public function get buttonMode():Boolean
     {
-        if (GOOG::DEBUG)
-            trace("buttonMode not implemented");
+        trace("buttonMode not implemented");
         return false;
     }
     
@@ -843,8 +830,7 @@ public class UIComponent extends UIBase
     { override }
     public function set buttonMode(value:Boolean):void
     {
-        if (GOOG::DEBUG)
-            trace("buttonMode not implemented");
+        trace("buttonMode not implemented");
     }
     
     [Bindable("errorStringChanged")]
@@ -874,8 +860,7 @@ public class UIComponent extends UIBase
      */
     public function get errorString():String
     {
-        if (GOOG::DEBUG)
-            trace("errorString not implemented");
+        trace("errorString not implemented");
         return "";
     }
     
@@ -884,8 +869,7 @@ public class UIComponent extends UIBase
      */
     public function set errorString(value:String):void
     {
-        if (GOOG::DEBUG)
-            trace("errorString not implemented");
+        trace("errorString not implemented");
     }
     
     //----------------------------------
@@ -941,8 +925,7 @@ public class UIComponent extends UIBase
     public function get doubleClickEnabled():Boolean
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("doubleClickEnabled not implemented");
+        trace("doubleClickEnabled not implemented");
         return false;
     }
 
@@ -957,8 +940,7 @@ public class UIComponent extends UIBase
     public function set doubleClickEnabled(value:Boolean):void
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("doubleClickEnabled not implemented");
+        trace("doubleClickEnabled not implemented");
     }
 
     //----------------------------------
@@ -1207,8 +1189,7 @@ public class UIComponent extends UIBase
     public function get cacheAsBitmap():Boolean
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("cacheAsBitmap not implemented");
+        trace("cacheAsBitmap not implemented");
         return false;
     }
     
@@ -1222,8 +1203,7 @@ public class UIComponent extends UIBase
     public function set cacheAsBitmap(value:Boolean):void
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("cacheAsBitmap not implemented");
+        trace("cacheAsBitmap not implemented");
     }
 
     //----------------------------------
@@ -1258,8 +1238,7 @@ public class UIComponent extends UIBase
     public function set filters(value:Array):void
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("filters not implemented");
+        trace("filters not implemented");
     }
 
        
@@ -1287,8 +1266,7 @@ public class UIComponent extends UIBase
     public function get cursorManager():ICursorManager
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("cursorManager not implemented");
+        trace("cursorManager not implemented");
 
         return null;
         //return CursorManager.getInstance();
@@ -1395,8 +1373,7 @@ public class UIComponent extends UIBase
     public function get systemManager():ISystemManager
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("systemManager not implemented");
+        trace("systemManager not implemented");
         return _systemManager;
     }
 
@@ -1406,8 +1383,7 @@ public class UIComponent extends UIBase
     public function set systemManager(value:ISystemManager):void
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("systemManager not implemented");
+        trace("systemManager not implemented");
         _systemManager = value;
     }
     
@@ -1416,8 +1392,7 @@ COMPILE::JS
     public function get stage():Object
     {
         // TODO
-        if (GOOG::DEBUG)
-            trace("stage not implemented");
+        trace("stage not implemented");
         return null;
     }
 }
@@ -2848,8 +2823,7 @@ COMPILE::JS
         _styleName = value;
 
         // TODO
-        if (GOOG::DEBUG)
-            trace("styleName not implemented");
+        trace("styleName not implemented");
     }
 
     //----------------------------------
@@ -3033,8 +3007,7 @@ COMPILE::JS
     { override }
     public function setChildIndex(child:IUIComponent, index:int):void
     {
-        if (GOOG::DEBUG)
-            trace("setChildIndex not implemented");
+        trace("setChildIndex not implemented");
     }
 
     /**
@@ -3056,8 +3029,7 @@ COMPILE::JS
     { override }
     public function getChildByName(name:String):IUIComponent
     {
-        if (GOOG::DEBUG)
-            trace("getChildByName not implemented");
+        trace("getChildByName not implemented");
         return null;
     }
 
@@ -3069,8 +3041,7 @@ COMPILE::JS
     { override }
     public function contains(child:IUIComponent):Boolean
     {
-        if (GOOG::DEBUG)
-            trace("contains not implemented");
+        trace("contains not implemented");
         return true;
     }
     
@@ -3082,8 +3053,7 @@ COMPILE::JS
     { override }
     public function startDrag(lockCenter:Boolean = false, bounds:Rectangle = null):void
     {
-        if (GOOG::DEBUG)
-            trace("startDrag not implemented");
+        trace("startDrag not implemented");
     }
 
     /**
@@ -3095,8 +3065,7 @@ COMPILE::JS
     }
     public function stopDrag():void
     {
-        if (GOOG::DEBUG)
-            trace("stopDrag not implemented");
+        trace("stopDrag not implemented");
     }
     
     /**
@@ -3261,8 +3230,7 @@ COMPILE::JS
      */
     public function invalidateProperties():void
     {
-        if (GOOG::DEBUG)
-            trace("invalidateProperties not implemented");
+        trace("invalidateProperties not implemented");
     }
 
     /**
@@ -3289,8 +3257,7 @@ COMPILE::JS
      */
     public function invalidateSize():void
     {
-        if (GOOG::DEBUG)
-            trace("invalidateSize not implemented");
+        trace("invalidateSize not implemented");
     }
 
     /**
@@ -3304,8 +3271,7 @@ COMPILE::JS
      */
     protected function invalidateParentSizeAndDisplayList():void
     {
-        if (GOOG::DEBUG)
-            trace("invalidateParentSizeAndDisplayList not implemented");
+        trace("invalidateParentSizeAndDisplayList not implemented");
     }
 
     /**
@@ -3332,8 +3298,7 @@ COMPILE::JS
      */
     public function invalidateDisplayList():void
     {
-        if (GOOG::DEBUG)
-            trace("invalidateDisplayList not implemented");
+        trace("invalidateDisplayList not implemented");
     }
 
     /**
@@ -3375,8 +3340,7 @@ COMPILE::JS
     COMPILE::JS
     public function get mouseX():Number
     {
-        if (GOOG::DEBUG)
-            trace("mouseX not implemented");
+        trace("mouseX not implemented");
         return 0;
     }
     
@@ -3391,8 +3355,7 @@ COMPILE::JS
     COMPILE::JS
     public function get mouseY():Number
     {
-        if (GOOG::DEBUG)
-            trace("mouseX not implemented");
+        trace("mouseX not implemented");
         return 0;
     }
     
@@ -3423,8 +3386,7 @@ COMPILE::JS
      */
     public function styleChanged(styleProp:String):void
     {
-        if (GOOG::DEBUG)
-            trace("styleChanged not implemented");
+        trace("styleChanged not implemented");
     }
 
     /**
@@ -3502,8 +3464,7 @@ COMPILE::JS
      */
     public function validateProperties():void
     {
-        if (GOOG::DEBUG)
-            trace("validateProperties not implemented");
+        trace("validateProperties not implemented");
     }
 
     /**
@@ -3533,8 +3494,7 @@ COMPILE::JS
      */
     protected function commitProperties():void
     {
-        if (GOOG::DEBUG)
-            trace("commitProperties not implemented");
+        trace("commitProperties not implemented");
     }
 
     //--------------------------------------------------------------------------
@@ -3553,8 +3513,7 @@ COMPILE::JS
      */
     public function validateSize(recursive:Boolean = false):void
     {
-        if (GOOG::DEBUG)
-            trace("validateSize not implemented");
+        trace("validateSize not implemented");
     }
 
     /**
@@ -3726,8 +3685,7 @@ COMPILE::JS
      */
     public function measureText(text:String):TextLineMetrics
     {
-        if (GOOG::DEBUG)
-            trace("measureText not implemented");
+        trace("measureText not implemented");
         return null;
     }
 	
@@ -3781,8 +3739,7 @@ COMPILE::JS
      */
     public function validateDisplayList():void
     {
-        if (GOOG::DEBUG)
-            trace("validateDisplayList not implemented");                    
+        trace("validateDisplayList not implemented");                    
     }
 
     /**
@@ -3829,8 +3786,7 @@ COMPILE::JS
     protected function updateDisplayList(unscaledWidth:Number,
                                         unscaledHeight:Number):void
     {
-        if (GOOG::DEBUG)
-            trace("updateDisplayList not implemented");                    
+        trace("updateDisplayList not implemented");                    
     }
 
     
@@ -4065,8 +4021,7 @@ COMPILE::JS
     }
     public function set horizontalCenter(value:Object):void
     {
-         if (GOOG::DEBUG)
-            trace("horizontalCenter not implemented");
+        trace("horizontalCenter not implemented");
     }
 
     [Inspectable(category="General")]
@@ -4095,8 +4050,7 @@ COMPILE::JS
     }
     public function set verticalCenter(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("verticalCenter not implemented");
+        trace("verticalCenter not implemented");
     }
 	
     [Inspectable(category="General")]
@@ -4126,14 +4080,12 @@ COMPILE::JS
      */
     public function get cornerRadius():Object
     {
-        if (GOOG::DEBUG)
-            trace("cornerRadius not implemented");
+        trace("cornerRadius not implemented");
         return 0;
     }
     public function set cornerRadius(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("cornerRadius not implemented");
+        trace("cornerRadius not implemented");
     }
 	[Inspectable(category="General")]
 	
@@ -4145,14 +4097,12 @@ COMPILE::JS
      */
     public function get fontFamily():Object
     {
-        if (GOOG::DEBUG)
-            trace("fontFamily not implemented");
+        trace("fontFamily not implemented");
         return 0;
     }
     public function set fontFamily(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("fontFamily not implemented");
+        trace("fontFamily not implemented");
     }
 	[Inspectable(category="General")]
 	
@@ -4164,14 +4114,12 @@ COMPILE::JS
      */
     public function get uid():Object
     {
-        if (GOOG::DEBUG)
-            trace("uid not implemented");
+        trace("uid not implemented");
         return 0;
     }
     public function set uid(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("uid not implemented");
+        trace("uid not implemented");
     }
 	[Inspectable(category="General")]
 	
@@ -4199,14 +4147,12 @@ COMPILE::JS
      */
     public function get textAlign():Object
     {
-        if (GOOG::DEBUG)
-            trace("textAlign not implemented");
+        trace("textAlign not implemented");
         return 0;
     }
     public function set textAlign(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("textAlign not implemented");
+        trace("textAlign not implemented");
     }
 	[Inspectable(category="General")]
 	
@@ -4219,14 +4165,12 @@ COMPILE::JS
      */
     public function get color():Object
     {
-        if (GOOG::DEBUG)
-            trace("color not implemented");
+        trace("color not implemented");
         return 0;
     }
     public function set color(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("color not implemented");
+        trace("color not implemented");
     }
 	[Inspectable(category="General")]
 
@@ -4238,14 +4182,12 @@ COMPILE::JS
      */
     public function get selectedField():Object
     {
-        if (GOOG::DEBUG)
-            trace("selectedField not implemented");
+        trace("selectedField not implemented");
         return 0;
     }
     public function set selectedField(value:Object):void
     {
-        if (GOOG::DEBUG)
-            trace("selectedField not implemented");
+        trace("selectedField not implemented");
     }
 	[Inspectable(category="General")]
 
@@ -4307,8 +4249,8 @@ COMPILE::JS
      */
     public function setActualSize(w:Number, h:Number):void
     {
-        //if (GOOG::DEBUG)
-        //    trace("setActualSize not implemented");
+    
+    //    trace("setActualSize not implemented");
 		this.setWidthAndHeight(w, h);
     }
 
@@ -4397,9 +4339,7 @@ COMPILE::JS
      *  @productversion Flex 3
      */
     public function getStyle(styleProp:String):*
-    {
-//        if (GOOG::DEBUG)
-//            trace("getStyle not implemented");
+    {//            trace("getStyle not implemented");
 //        return 0;
 		var value:* = ValuesManager.valuesImpl.getValue(this,styleProp);
 //		if (!value) value = 0;
@@ -4497,8 +4437,7 @@ COMPILE::JS
      */
     public function owns(child:IUIComponent):Boolean
     {
-        if (GOOG::DEBUG)
-            trace("owns not implemented");
+        trace("owns not implemented");
         return true;
     }
     
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/events/CollectionEvent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/events/CollectionEvent.as
index 8ebde54..0a77709 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/events/CollectionEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/CollectionEvent.as
@@ -19,9 +19,6 @@
 
 package mx.events
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 
 import org.apache.royale.events.Event;
 import org.apache.royale.events.IRoyaleEvent;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as b/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
index fa33082..c341008 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/managers/SystemManager.as
@@ -19,10 +19,6 @@
 
 package mx.managers
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 COMPILE::SWF
 {
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/events/ResultEvent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/events/ResultEvent.as
index 4a99d63..65f05e6 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/events/ResultEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/events/ResultEvent.as
@@ -19,9 +19,6 @@
 
 package mx.rpc.events
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 
 //import flash.events.Event;
 import org.apache.royale.events.Event;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManager.as b/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManager.as
index 5aad22e..286cc24 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManager.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManager.as
@@ -19,10 +19,6 @@
 
 package mx.styles
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 /*
 import flash.events.IEventDispatcher;
 import flash.system.ApplicationDomain;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManagerImpl.as b/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManagerImpl.as
index bfeac6e..fb549c7 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManagerImpl.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/styles/StyleManagerImpl.as
@@ -19,10 +19,6 @@
 
 package mx.styles
 {
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 /*
 import flash.display.DisplayObject;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Decoder.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Decoder.as
index ff512ad..444cdea 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Decoder.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Decoder.as
@@ -25,10 +25,6 @@ COMPILE::SWF
     import mx.utils.ByteArray;
 }
 
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 /*
 import mx.resources.IResourceManager;
 import mx.resources.ResourceManager;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Encoder.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Encoder.as
index 8eb6c29..31fc863 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Encoder.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64Encoder.as
@@ -25,10 +25,6 @@ COMPILE::SWF
 	import mx.utils.ByteArray;
 }
 
-COMPILE::JS
-{
-    import goog.DEBUG;
-}
 
 /**
  * A utility class to encode a String or ByteArray as a Base64 encoded String.
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectProxy.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectProxy.as
index f187dbe..7904ff7 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectProxy.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectProxy.as
@@ -19,9 +19,6 @@
 
 package mx.utils
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 /*
 import flash.events.Event;
 import flash.events.EventDispatcher;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as
index 2ad6e6e..2ac930c 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/ObjectUtil.as
@@ -19,9 +19,6 @@
 
 package mx.utils
 {
-COMPILE::JS {
-	import goog.DEBUG;
-}
 /*
 import flash.utils.ByteArray;
 import flash.utils.Dictionary;