Changeset 2250


Ignore:
Timestamp:
12/11/17 15:16:54 (7 years ago)
Author:
pharms
Message:
 
File:
1 edited

Legend:

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

    r2249 r2250  
    158158        public String toString() { 
    159159            String separator = System.getProperty("line.separator"); 
    160             String result = content + separator; 
     160            StringBuffer result = new StringBuffer(content); 
     161            result.append(separator); 
    161162 
    162163            for (StructureNode child : children) { 
    163                 result += child.toString(); 
     164                result.append(child.toString()); 
    164165            } 
    165166 
    166167            if (content.endsWith("/>")) { 
    167                 return result; 
    168             } 
    169             return result + "</StructureElement>" + separator; 
     168                return result.toString(); 
     169            } 
     170             
     171            result.append("</StructureElement>"); 
     172            result.append(separator); 
     173             
     174            return result.toString(); 
    170175        } 
    171176    } 
Note: See TracChangeset for help on using the changeset viewer.