Uploaded image for project: 'Apache Flex'
  1. Apache Flex
  2. FLEX-15171

ObjectUtil.compare() returns 0 or -1 when comparing 2 objects depending on which parameter is first.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • Adobe Flex SDK 3.0 (Release)
    • Apache Flex 4.9.0
    • mx: General
    • Affected OS(s): All OS Platforms
      Affected OS(s): All OS Platforms
      Language Found: English

    Description

      Steps To Reproduce: Use the following code:

      <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" initialize="this.testMe(event)">
      <mx:Script><![CDATA[
      import mx.utils.ObjectUtil;
      import mx.events.FlexEvent;
      public function testMe(e:FlexEvent):void

      { var objA:Tester = new Tester(); objA.a = 1; objA.b = 2; var objB:Tester = new Tester(); objB.a = 1; trace("Compare=" + ObjectUtil.compare(objA, objB)); trace("Compare=" + ObjectUtil.compare(objB, objA)); }

      ]]
      ></mx:Script>
      </mx:Application>

      The Tester class looks like this:
      package
      {
      public dynamic class Tester extends Object
      {
      public function Tester()

      { super(); }

      }
      }

      Actual Results:
      Compare=-1
      Compare=0

      Expected Results:
      Compare=-1
      Compare=1

      Workaround (if any):
      Call compare twice with parameters reversed to make sure the objects are equal. Could be costly time-wise though.

      Attachments

        Activity

          People

            Unassigned Unassigned
            adobejira Adobe JIRA
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: