You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ch...@apache.org on 2014/12/09 01:22:58 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-34336 removed trace statement from development.

Repository: flex-sdk
Updated Branches:
  refs/heads/develop 5a8cb8596 -> a2e03fd8a


FLEX-34336 removed trace statement from development.


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

Branch: refs/heads/develop
Commit: a2e03fd8ae42acacaadf124532095530725d0061
Parents: 5a8cb85
Author: chrsmrtn <ch...@apache.org>
Authored: Mon Dec 8 17:19:47 2014 -0700
Committer: chrsmrtn <ch...@apache.org>
Committed: Mon Dec 8 17:19:47 2014 -0700

----------------------------------------------------------------------
 .../src/spark/components/supportClasses/ScrollableStageText.as  | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a2e03fd8/frameworks/projects/mobilecomponents/src/spark/components/supportClasses/ScrollableStageText.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobilecomponents/src/spark/components/supportClasses/ScrollableStageText.as b/frameworks/projects/mobilecomponents/src/spark/components/supportClasses/ScrollableStageText.as
index 200265e..de6cff1 100644
--- a/frameworks/projects/mobilecomponents/src/spark/components/supportClasses/ScrollableStageText.as
+++ b/frameworks/projects/mobilecomponents/src/spark/components/supportClasses/ScrollableStageText.as
@@ -1580,12 +1580,9 @@ public class ScrollableStageText extends UIComponent  implements IStyleableEdita
     protected function disposeProxy():void
     {
 
-        var bd: BitmapData = Bitmap(proxy).bitmapData;
+        var bd:BitmapData = Bitmap(proxy).bitmapData;
         if (bd)
            bd.dispose();
-        else {
-            trace("[WARN] SST found empty bitmap data in:", debugId)  ;
-        }
 
     }