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

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

commit 5db5c2ca2b95d83fac5463d1c85030df06e55bf8
Author: Alex Harui <aha...@apache.org>
AuthorDate: Thu Feb 22 22:34:50 2018 -0800

    clean up warnings
---
 .../src/main/royale/productsView/ProductList.mxml         | 15 +++++++++++++++
 .../src/main/royale/productsView/ProductListItem.mxml     |  4 ++++
 .../main/royale/samples/royalestore/ProductFilterEvent.as |  7 +++++++
 .../main/royale/samples/royalestore/ProductListEvent.as   |  3 +++
 .../main/royale/samples/royalestore/ProductThumbEvent.as  |  3 +++
 5 files changed, 32 insertions(+)

diff --git 
a/examples/royale/RoyaleStore/src/main/royale/productsView/ProductList.mxml 
b/examples/royale/RoyaleStore/src/main/royale/productsView/ProductList.mxml
index 018b905..4c31b61 100755
--- a/examples/royale/RoyaleStore/src/main/royale/productsView/ProductList.mxml
+++ b/examples/royale/RoyaleStore/src/main/royale/productsView/ProductList.mxml
@@ -44,12 +44,27 @@ limitations under the License.
         import samples.royalestore.Product;
         import samples.royalestore.ProductListEvent;
         
+        /**
+         * @royalesuppresspublicvarwarning
+         */
         public var items:Array;
         
+        /**
+         * @royalesuppresspublicvarwarning
+         */
         public var newItemStartX:int;
+            
+        /**
+         * @royalesuppresspublicvarwarning
+         */
         public var newItemStartY:int;
+            
         [Bindable]
         public var maxItems:int = 0;
+            
+        /**
+         * @royalesuppresspublicvarwarning
+         */
         public var showQuantity:Boolean;
         
         private var playingEffects:Object = new Object();
diff --git 
a/examples/royale/RoyaleStore/src/main/royale/productsView/ProductListItem.mxml 
b/examples/royale/RoyaleStore/src/main/royale/productsView/ProductListItem.mxml
index 23e7fd0..4b8e4c9 100755
--- 
a/examples/royale/RoyaleStore/src/main/royale/productsView/ProductListItem.mxml
+++ 
b/examples/royale/RoyaleStore/src/main/royale/productsView/ProductListItem.mxml
@@ -35,6 +35,10 @@ limitations under the License.
         import samples.royalestore.ProductListEvent;
         
         private static var idCounter:int = 0;
+        
+        /**
+         * @royalesuppresspublicvarwarning
+         */
         public var uid:String = (idCounter++).toString();
         
         public static const HEIGHT:int = 30;
diff --git 
a/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductFilterEvent.as
 
b/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductFilterEvent.as
index 002b33b..be6f267 100755
--- 
a/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductFilterEvent.as
+++ 
b/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductFilterEvent.as
@@ -25,7 +25,14 @@ public class ProductFilterEvent extends Event
 {
     public static const FILTER:String = "filter";
     
+    /**
+     * @royalesuppresspublicvarwarning
+     */
     public var live:Boolean;
+    
+    /**
+     * @royalesuppresspublicvarwarning
+     */
     public var filter:ProductFilter;
     
     public function ProductFilterEvent(filter:ProductFilter, live:Boolean)
diff --git 
a/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductListEvent.as
 
b/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductListEvent.as
index 3022855..64a8ef9 100755
--- 
a/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductListEvent.as
+++ 
b/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductListEvent.as
@@ -28,6 +28,9 @@ public class ProductListEvent extends Event
     public static const REMOVE_PRODUCT:String = "removeProduct";
     public static const PRODUCT_QTY_CHANGE:String = "productQtyChange";
     
+    /**
+     * @royalesuppresspublicvarwarning
+     */
     public var product:Product;
     
     //making the default bubbles behavior of the event to true since we want
diff --git 
a/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductThumbEvent.as
 
b/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductThumbEvent.as
index 8a0eeff..7b66768 100755
--- 
a/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductThumbEvent.as
+++ 
b/examples/royale/RoyaleStore/src/main/royale/samples/royalestore/ProductThumbEvent.as
@@ -29,6 +29,9 @@ public class ProductThumbEvent extends Event
     public static const DETAILS:String = "details";
     public static const BROWSE:String = "browse";
     
+    /**
+     * @royalesuppresspublicvarwarning
+     */
     public var product:Product;
     
     public function ProductThumbEvent(type:String, product:Product)

-- 
To stop receiving notification emails like this one, please contact
aha...@apache.org.

Reply via email to