You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by Justin Mclean <ju...@classsoftware.com> on 2013/04/21 02:52:20 UTC

Re: git commit: [flex-sdk] - Fixes FLEX-18697. Check-in tests run, mustella passes.

Hi,

Why not this?

                var value:String = options[flag].toString();
                if (value != null)
                    key += value;

The issue occurs when options[flag] is not a String but a Boolean right? So I think what you checked in in would still cause it to not be added to the key? (Off top of head not tested.)

Thanks,
Justin