Probably because the if statement is empty. I’m going to add that logic tomorrow.
On Oct 26, 2016, at 10:47 PM, Alex Harui <aha...@adobe.com> wrote: > > > On 10/26/16, 8:53 AM, "yish...@apache.org" <yish...@apache.org> wrote: >> >> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/24c2fdfa/frameworks/ >> projects/Core/src/main/flex/org/apache/flex/utils/CSSUtils.as >> ---------------------------------------------------------------------- >> diff --git >> a/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/CSSUtils.as >> >> b/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/CSSUtils.as >> index 22c7efa..977fb09 100644 >> --- >> a/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/CSSUtils.as >> +++ >> b/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/CSSUtils.as >> @@ -40,6 +40,10 @@ package org.apache.flex.utils >> >> public static function attributeFromColor(value:uint):String >> { >> + if(value > 16777215) >> + { >> + //rgba -- return rgb notation >> + } >> return "#" + StringPadder.pad(value.toString(16),"0",6); >> } > > This is causing a warning in release builds. > > -Alex >