Changeset 768


Ignore:
Timestamp:
09/05/12 12:46:13 (12 years ago)
Author:
fglaser
Message:

*Fixed a bug in JFCReplayCalculator that appeared because of changes in JFCGUIElementSpec

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc/src/main/java/de/ugoe/cs/quest/plugin/jfc/JFCReplayIDCalculator.java

    r675 r768  
    146146                } 
    147147                if (ID_PROPERTIES.contains("Title")){ 
    148                         idProperties.put("Title", spec.getName()); 
     148                        String name = spec.getName(); 
     149                        // spec returns extra "" that need to be removed 
     150                        idProperties.put("Title", name.substring(1, name.length() - 1)); 
    149151                } 
    150152                if (ID_PROPERTIES.contains("Icon")){ 
Note: See TracChangeset for help on using the changeset viewer.