XMLFileManipulator's loopWrite method is very inefficient
Status: Beta
Brought to you by:
bernhardbrem
There is an excessive amount of string concatenation being performed in this method. Java strings are immutable. Every call to += or + will instantiate a new StringBuffer with the appropriate 'append' method being called. This is horribly inefficient. The method should be altered to use a StringBuffer instead.
Logged In: YES
user_id=1299552
Originator: YES
Fix released to HEAD.