Uploaded image for project: 'Commons Digester'
  1. Commons Digester
  2. DIGESTER-134

Bug in SetPropertyRule

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Not A Problem
    • 2.0
    • 3.0
    • None

    Description

      In method begin(Attributes attributes) there seems like something wrong there:

      if (name.equals(this.name)) {
      actualName = value;
      } else if (name.equals(this.value)) {
      actualValue = value;
      }

      But actually must me fixed this way:

      if (name.equals(this.name)) {
      actualName = name;
      actualValue = value;
      break;
      }

      It wont work without that fix. I tested.

      Attachments

        Activity

          People

            simone.tripodi Simone Tripodi
            the.malkolm Alexander Krasnukhin
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: