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

git commit: [flex-asjs] [refs/heads/develop] - Change to make Google closure annotation happy.

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 02420b9a3 -> ff612eb78


Change to make Google closure annotation happy.


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

Branch: refs/heads/develop
Commit: ff612eb78f184fc099ab820be24e5b8f609be552
Parents: 02420b9
Author: Peter Ent <pe...@apache.org>
Authored: Wed Mar 19 17:12:36 2014 -0400
Committer: Peter Ent <pe...@apache.org>
Committed: Wed Mar 19 17:12:36 2014 -0400

----------------------------------------------------------------------
 .../html/staticControls/supportClasses/NonVirtualDataGroup.js   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ff612eb7/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.js b/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.js
index 2b64d93..83fb799 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.js
@@ -15,8 +15,8 @@
 goog.provide('org.apache.flex.html.staticControls.supportClasses.NonVirtualDataGroup');
 
 goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.utils.Language');
 goog.require('org.apache.flex.html.staticControls.supportClasses.DataItemRenderer');
+goog.require('org.apache.flex.utils.Language');
 
 
 
@@ -80,7 +80,8 @@ org.apache.flex.html.staticControls.supportClasses.NonVirtualDataGroup.
     prototype.addElement = function(value) {
   goog.base(this, 'addElement', value);
 
-  var itemRenderer = org.apache.flex.utils.Language.as(value,org.apache.flex.html.staticControls.supportClasses.DataItemRenderer);
+  var itemRenderer = org.apache.flex.utils.Language.as(value,
+                           org.apache.flex.html.staticControls.supportClasses.DataItemRenderer);
   itemRenderer.set_index(this.renderers.length);
   itemRenderer.set_itemRendererParent(this);
   this.renderers.push(value);