Changeset 1909


Ignore:
Timestamp:
03/11/15 16:12:31 (9 years ago)
Author:
pharms
Message:
  • bugfix for parsing older log files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-html/src/main/java/de/ugoe/cs/autoquest/plugin/html/HTMLLogParser.java

    r1893 r1909  
    477477            } 
    478478        } 
    479          
    480         targetId = idMapping.get(targetId); 
     479        else { 
     480            targetId = idMapping.get(targetId); 
     481        } 
    481482         
    482483        if (targetId == null) { 
     
    569570        throws SAXException 
    570571    { 
    571         IGUIElement document = super.getGUIElementTree().find(targetDocument); 
     572        IGUIElement document = super.getGUIElementTree().find(idMapping.get(targetDocument)); 
    572573         
    573574        if (document == null) { 
Note: See TracChangeset for help on using the changeset viewer.