1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

[232233] [dstore] Buffer in DataElement is not retained

This commit is contained in:
David McKnight 2008-05-15 16:00:45 +00:00
parent eb7a8190c5
commit e040f7f6d2

View file

@ -12,7 +12,7 @@
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
* *
* Contributors: * Contributors:
* {Name} (company) - description of contribution. * David McKnight (IBM) - [232233] [dstore] Buffer in DataElement is not retained
*******************************************************************************/ *******************************************************************************/
package org.eclipse.dstore.internal.core.util; package org.eclipse.dstore.internal.core.util;
@ -371,10 +371,8 @@ public class XMLgenerator
indent(); indent();
append("<Buffer>"); //$NON-NLS-1$ append("<Buffer>"); //$NON-NLS-1$
nextLine(); nextLine();
indent();
append(text.toString()); append(text.toString());
nextLine(); nextLine();
indent();
append("</Buffer>"); //$NON-NLS-1$ append("</Buffer>"); //$NON-NLS-1$
} }
} }