You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2021/02/08 17:34:14 UTC

[royale-asjs] branch develop updated: jewel-iconbuttonbar: remove unused code

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

carlosrovira 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 7110f0f  jewel-iconbuttonbar: remove unused code
7110f0f is described below

commit 7110f0fe1c3b58e6acbeb31143b7bca42bf95951
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Mon Feb 8 18:34:04 2021 +0100

    jewel-iconbuttonbar: remove unused code
---
 .../royale/org/apache/royale/jewel/IconButtonBar.as | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/IconButtonBar.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/IconButtonBar.as
index 11835cd..0c9a85b 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/IconButtonBar.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/IconButtonBar.as
@@ -99,26 +99,5 @@ package org.apache.royale.jewel
 				_iconField = value;
 			}
 		}
-
-		private var _material:Boolean;
-        /**
-         *  Use the Material Icons
-         *
-         *  @langversion 3.0
-         *  @playerversion Flash 10.2
-         *  @playerversion AIR 2.6
-         *  @productversion Royale 0.9.7
-         */
-        public function get material():Boolean
-        {
-            return _material;
-        }
-        public function set material(value:Boolean):void
-        {
-            if (_material != value)
-            {
-                _material = value;
-            }
-        }
 	}
 }