Changeset 792


Ignore:
Timestamp:
09/07/12 08:28:04 (12 years ago)
Author:
pharms
Message:
  • handle the String "null" as name of a toString component correctly
File:
1 edited

Legend:

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

    r787 r792  
    562562         
    563563        // finish the component specification by setting the parameters 
    564         if (title == null) { 
    565             if (icon == null) { 
     564        if ((title == null) || "".equals(title) || "null".equals(title)) { 
     565            if ((icon == null) || "".equals(icon) || "null".equals(icon)) { 
    566566                title = clazz.substring(clazz.lastIndexOf('.') + 1) + "("; 
    567567                 
Note: See TracChangeset for help on using the changeset viewer.