git commit: [flex-asjs] [refs/heads/develop] - improve comparisons and move end condition calculation out of loop

2017-06-01 Thread jmclean
Repository: flex-asjs
Updated Branches:
  refs/heads/develop 5e0d33052 -> 6f03502df


improve comparisons and move end condition calculation out of loop


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

Branch: refs/heads/develop
Commit: 6f03502df36ca0cd01a269db255b2a5c2cbea6f3
Parents: 5e0d330
Author: Justin Mclean 
Authored: Fri Jun 2 12:03:57 2017 +1000
Committer: Justin Mclean 
Committed: Fri Jun 2 12:03:57 2017 +1000

--
 .../org/apache/flex/collections/ArrayList.as| 26 +++-
 .../apache/flex/collections/FlattenedList.as| 15 ++-
 2 files changed, 24 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f03502d/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/ArrayList.as
--
diff --git 
a/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/ArrayList.as
 
b/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/ArrayList.as
index fe74932..2598dd5 100644
--- 
a/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/ArrayList.as
+++ 
b/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/ArrayList.as
@@ -93,8 +93,10 @@ package org.apache.flex.collections
public function ArrayList(initialSource:Array=null)
{
super();
-   if (initialSource) _source = initialSource;
-   else _source = [];
+   if (initialSource !== null)
+   _source = initialSource;
+   else
+   _source = [];
}
 
 private var _id:String;
@@ -117,7 +119,7 @@ package org.apache.flex.collections
  */
public function set id(value:String):void
{
-   if (_id != value)
+   if (_id !== value)
{
_id = value;
dispatchEvent(new Event("idChanged"));
@@ -157,8 +159,8 @@ package org.apache.flex.collections
 
public function set source(value:Array):void
{
-   if (_source != value) {
-   if (value == null)
+   if (_source !== value) {
+   if (value === null)
{
_source = [];
 }
@@ -207,8 +209,10 @@ package org.apache.flex.collections
 */
public function getItemIndex(item:Object):int
{
-   for (var index:int=0; index < _source.length; index++) {
-   if (item == _source[index]) {
+   var length:int = _source.length;
+   
+   for (var index:int=0; index < length; index++) {
+   if (item === _source[index]) {
return index;
}
}
@@ -244,11 +248,11 @@ package org.apache.flex.collections
{
source.splice(index, 0, item);
}
-   else if (index == spliceUpperBound)
+   else if (index === spliceUpperBound)
{
source.push(item);
}
-   else if (index == 0)
+   else if (index === 0)
{
source.unshift(item);
}
@@ -328,11 +332,11 @@ package org.apache.flex.collections
{
removed = source.splice(index, 1)[0];
}
-   else if (index == spliceUpperBound)
+   else if (index === spliceUpperBound)
{
removed = source.pop();
}
-   else if (index == 0)
+   else if (index === 0)
{
removed = source.shift();
}

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/6f03502d/frameworks/projects/Collections/src/main/flex/org/apache/flex/collections/FlattenedList.as

git commit: [flex-asjs] [refs/heads/release0.8.0] - Intermediate changes for Accordion.

2017-06-01 Thread pent
Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 7a030dbc1 -> d6cb59b17


Intermediate changes for Accordion.


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

Branch: refs/heads/release0.8.0
Commit: d6cb59b1769902d5e5bb61ce9d09680b79b21a68
Parents: 7a030db
Author: Peter Ent 
Authored: Thu Jun 1 15:32:11 2017 -0400
Committer: Peter Ent 
Committed: Thu Jun 1 15:32:11 2017 -0400

--
 .../flex/html/beads/AccordionCollapseBead.as|  5 +-
 .../html/beads/AccordionItemRendererView.as |  6 +-
 .../org/apache/flex/html/beads/AccordionView.as | 62 ++--
 .../layouts/OneFlexibleChildHorizontalLayout.as |  4 ++
 ...eFlexibleChildHorizontalLayoutForOverflow.as |  4 ++
 .../layouts/OneFlexibleChildVerticalLayout.as   |  4 ++
 ...OneFlexibleChildVerticalLayoutForOverflow.as |  4 ++
 .../Basic/src/main/resources/defaults.css   |  2 +-
 8 files changed, 67 insertions(+), 24 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d6cb59b1/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionCollapseBead.as
--
diff --git 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionCollapseBead.as
 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionCollapseBead.as
index 2dde93f..163c276 100644
--- 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionCollapseBead.as
+++ 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionCollapseBead.as
@@ -22,6 +22,7 @@ package org.apache.flex.html.beads
import org.apache.flex.core.IStrand;
import org.apache.flex.core.UIBase;
import org.apache.flex.events.Event;
+   import org.apache.flex.events.IEventDispatcher;
import org.apache.flex.html.Accordion;
import org.apache.flex.html.beads.layouts.IOneFlexibleChildLayout;
import org.apache.flex.html.supportClasses.ICollapsible;
@@ -74,8 +75,8 @@ package org.apache.flex.html.beads
lastElement.collapse();
}
lastSelectedIndex = host.selectedIndex;
-   layout.flexibleChild = newChild.id;
-   layout.layout();
+   layout.flexibleChild = String(host.selectedIndex);  

+   IEventDispatcher(_strand).dispatchEvent(new 
Event("layoutNeeded"));
}

protected function get layout():IOneFlexibleChildLayout

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d6cb59b1/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionItemRendererView.as
--
diff --git 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionItemRendererView.as
 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionItemRendererView.as
index 85e2b79..9c59377 100644
--- 
a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionItemRendererView.as
+++ 
b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionItemRendererView.as
@@ -19,6 +19,7 @@
 package org.apache.flex.html.beads
 {  
import org.apache.flex.events.Event;
+   import org.apache.flex.events.IEventDispatcher;
import org.apache.flex.html.supportClasses.ICollapsible;
 
/**
@@ -53,12 +54,13 @@ package org.apache.flex.html.beads
var collapsibleStrand:ICollapsible = _strand as 
ICollapsible;
if (!collapsibleStrand.collapsed)
{
-   super.performLayout(event);
+   IEventDispatcher(_strand).dispatchEvent(new 
Event("layoutNeeded"));
+// super.performLayout(event);
} else // skip layout for viewport children
{
COMPILE::SWF {
// no longer needed 
layoutViewBeforeContentLayout();
-   afterLayout();
+   //afterLayout();
}
}
}

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d6cb59b1/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/AccordionView.as

Build failed in Jenkins: flex-utilities_installer #1189

2017-06-01 Thread flex . ci . builds
See 


--
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-utilities.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-utilities.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision 4d898afa7d1fa020a5b6dff191205cd9e3b13823 (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 4d898afa7d1fa020a5b6dff191205cd9e3b13823
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 4d898afa7d1fa020a5b6dff191205cd9e3b13823 # timeout=10
[ant_on_air] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 main && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 


init:

check-as3commons.swc:

get-as3commons.swc:

third-party:
  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 

  [get] Destination already exists (skipping): 


compile:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[compc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\bin\ant_on_air.swc
 (134452 bytes)

test:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\air-config.xml
[mxmlc] 
C:\Jenkins\workspace\flex-utilities_installer\flex-installer\ant_on_air\tests\AntOnAir.swf
 (1147467 bytes)
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

failuretests:

main:

BUILD SUCCESSFUL
Total time: 1 minute 31 seconds
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[flex-installer] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml -Dplayerglobal.version=11.7 clean build source-package 
create-md5s copy-misc && exit %%ERRORLEVEL%%"
Buildfile: 


clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 


clean:

createDirs:
 [echo] ***
 [echo] Execute the update-version target once,
 [echo] and only once, when you 

Build failed in Jenkins: flex-tlf #1095

2017-06-01 Thread flex . ci . builds
See 

--
Started by timer
Building remotely on flex_sdk_slave2 in workspace 

 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # 
 > timeout=10
Fetching changes from the remote Git repository
 > C:\Program Files (x86)\Git\cmd\git.exe config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/flex-tlf.git # timeout=10
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/flex-tlf.git
 > C:\Program Files (x86)\Git\cmd\git.exe --version # timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe fetch --tags --progress 
 > https://git-wip-us.apache.org/repos/asf/flex-tlf.git 
 > +refs/heads/*:refs/remotes/origin/*
 > C:\Program Files (x86)\Git\cmd\git.exe rev-parse "origin/develop^{commit}" # 
 > timeout=10
Checking out Revision 7fe228452bf7aff8bd670dbdc7cb4e6858628bab (origin/develop)
 > C:\Program Files (x86)\Git\cmd\git.exe config core.sparsecheckout # 
 > timeout=10
 > C:\Program Files (x86)\Git\cmd\git.exe checkout -f 
 > 7fe228452bf7aff8bd670dbdc7cb4e6858628bab
 > C:\Program Files (x86)\Git\cmd\git.exe rev-list 
 > 7fe228452bf7aff8bd670dbdc7cb4e6858628bab # timeout=10
[flex-tlf] $ cmd.exe /C 
"c:\Jenkins\tools\hudson.tasks.Ant_AntInstallation\c_apache-ant-1.9.3\bin\ant.bat
 -file build.xml all && exit %%ERRORLEVEL%%"
Buildfile: 
 [echo] FLEX_HOME is 

 [echo] Minimal test is set false

clean:
   [delete] Deleting directory 

   [delete] Deleting: 


textLayout:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[compc] C:\Jenkins\workspace\flex-tlf\bin\textLayout.swc (550060 bytes)

main:

asTestApps:
 [echo] FLEX_HOME is 

 [echo] Minimal test is set false

asTestApp:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[mxmlc] 
C:\Jenkins\workspace\flex-tlf\bin\apps\asTestApps\bin\ExplicitFormField.swf 
(521419 bytes)
 [echo] FLEX_HOME is 

 [echo] Minimal test is set false

asTestApp:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[mxmlc] 
C:\Jenkins\workspace\flex-tlf\bin\apps\asTestApps\bin\TCMTestFocus2.swf (528619 
bytes)
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
 [echo] FLEX_HOME is 

 [echo] Minimal test is set false

asTestApp:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[mxmlc] 
C:\Jenkins\workspace\flex-tlf\bin\apps\asTestApps\bin\AliceScroll.swf (589429 
bytes)
 [echo] FLEX_HOME is 

 [echo] Minimal test is set false

asTestApp:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[mxmlc] C:\Jenkins\workspace\flex-tlf\bin\apps\asTestApps\bin\KeyLogger.swf 
(2164 bytes)
 [echo] FLEX_HOME is 

 [echo] Minimal test is set false

asTestApp:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[mxmlc] C:\Jenkins\workspace\flex-tlf\bin\apps\asTestApps\bin\OpHammer.swf 
(531609 bytes)

textLayout_editBar:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[compc] 
C:\Jenkins\workspace\flex-tlf\bin\apps\testApps\bin\textLayout_editBar.swc 
(23176 bytes)

textLayout_ui:
[compc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[compc] 
C:\Jenkins\workspace\flex-tlf\bin\apps\testApps\bin\textLayout_ui.swc (112807 
bytes)
[compc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

testApps:
[mxmlc] Loading configuration file 
C:\Jenkins\workspace\flex-sdk\frameworks\flex-config.xml
[mxmlc] C:\Jenkins\workspace\flex-tlf\bin\apps\automation_apps\bin\Flow.swf 
(2191705 bytes)
[mxmlc] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8


git commit: [flex-asjs] [refs/heads/release0.8.0] - Clean up Camera code.

2017-06-01 Thread pent
Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 71d7d8b5b -> 7a030dbc1


Clean up Camera code.


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

Branch: refs/heads/release0.8.0
Commit: 7a030dbc1d174e9bd022eb0b1a524c4495745bb5
Parents: 71d7d8b
Author: Peter Ent 
Authored: Thu Jun 1 08:26:50 2017 -0400
Committer: Peter Ent 
Committed: Thu Jun 1 08:26:50 2017 -0400

--
 .../src/main/flex/org/apache/flex/cordova/Camera.as| 13 -
 1 file changed, 4 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7a030dbc/frameworks/projects/Mobile/src/main/flex/org/apache/flex/cordova/Camera.as
--
diff --git 
a/frameworks/projects/Mobile/src/main/flex/org/apache/flex/cordova/Camera.as 
b/frameworks/projects/Mobile/src/main/flex/org/apache/flex/cordova/Camera.as
index 8333fb2..ace3c01 100644
--- a/frameworks/projects/Mobile/src/main/flex/org/apache/flex/cordova/Camera.as
+++ b/frameworks/projects/Mobile/src/main/flex/org/apache/flex/cordova/Camera.as
@@ -54,28 +54,23 @@ package org.apache.flex.cordova
 */
COMPILE::JS
public class Camera
-   {
-   private var pictureSource:*;   // picture source
-   private var destinationType:*; // sets the format of returned 
value
-   
+   {   
public function Camera()
{
-   pictureSource=navigator['camera'].PictureSourceType;
-   destinationType=navigator['camera'].DestinationType;
}

public function capturePhoto(onPhotoDataSuccess:Function, 
onFail:Function):void
{
-   // Take picture using device camera and retrieve image 
as base64-encoded string
+   // Take picture using device camera and retrieve image 
as URI
navigator['camera'].getPicture(onPhotoDataSuccess, 
onFail, { quality: 50,
-   destinationType: destinationType.FILE_URI }); 
//DATA_URL
+   destinationType: 
navigator['camera'].DestinationType.FILE_URI });
}

public function getPhotoFromLibrary(onPhotoURISuccess:Function, 
onFail:Function):void
{
// Retrieve image file location from specified source
navigator['camera'].getPicture(onPhotoURISuccess, 
onFail, { quality: 50,
-   destinationType: destinationType.FILE_URI,
+   destinationType: 
navigator['camera'].DestinationType.FILE_URI,
sourceType: 
navigator['camera'].PictureSourceType.PHOTOLIBRARY });
}




[1/2] git commit: [flex-asjs] [refs/heads/release0.8.0] - MapSearch doesn't use Cordova

2017-06-01 Thread aharui
Repository: flex-asjs
Updated Branches:
  refs/heads/release0.8.0 ec58f56e6 -> 71d7d8b5b


MapSearch doesn't use Cordova


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

Branch: refs/heads/release0.8.0
Commit: 73a6a102cb0a6374d5977e86f1ba3fef8a23a673
Parents: ec58f56
Author: Alex Harui 
Authored: Wed May 31 21:44:46 2017 -0700
Committer: Alex Harui 
Committed: Wed May 31 21:44:46 2017 -0700

--
 examples/flexjs/MapSearch/build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/73a6a102/examples/flexjs/MapSearch/build.xml
--
diff --git a/examples/flexjs/MapSearch/build.xml 
b/examples/flexjs/MapSearch/build.xml
index c15f803..589da05 100644
--- a/examples/flexjs/MapSearch/build.xml
+++ b/examples/flexjs/MapSearch/build.xml
@@ -53,7 +53,7 @@
 
 
 
-
+
 
 
 



[2/2] git commit: [flex-asjs] [refs/heads/release0.8.0] - MobileMap output to cordova

2017-06-01 Thread aharui
MobileMap output to cordova


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

Branch: refs/heads/release0.8.0
Commit: 71d7d8b5b80e281692f53575371d689494b901c1
Parents: 73a6a10
Author: Alex Harui 
Authored: Wed May 31 21:50:00 2017 -0700
Committer: Alex Harui 
Committed: Wed May 31 21:50:00 2017 -0700

--
 examples/flexjs/MobileMap/build.xml| 9 -
 examples/flexjs/MobileMap/src/main/flex/MobileMap.mxml | 2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/71d7d8b5/examples/flexjs/MobileMap/build.xml
--
diff --git a/examples/flexjs/MobileMap/build.xml 
b/examples/flexjs/MobileMap/build.xml
index f50c4b7..ce1fe68 100644
--- a/examples/flexjs/MobileMap/build.xml
+++ b/examples/flexjs/MobileMap/build.xml
@@ -36,6 +36,13 @@
 
 
 
+
+
+
+
+
+
+
 
 
 
@@ -43,7 +50,7 @@
 
 
 
-   
+   
 
 
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/71d7d8b5/examples/flexjs/MobileMap/src/main/flex/MobileMap.mxml
--
diff --git a/examples/flexjs/MobileMap/src/main/flex/MobileMap.mxml 
b/examples/flexjs/MobileMap/src/main/flex/MobileMap.mxml
index 1a68662..2e63648 100644
--- a/examples/flexjs/MobileMap/src/main/flex/MobileMap.mxml
+++ b/examples/flexjs/MobileMap/src/main/flex/MobileMap.mxml
@@ -27,7 +27,7 @@ limitations under the License.