diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/doctools/doxygen/DoxygenMultilineAutoEditStrategy.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/doctools/doxygen/DoxygenMultilineAutoEditStrategy.java index 4d994a0ddf8..6e4639ab0cb 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/doctools/doxygen/DoxygenMultilineAutoEditStrategy.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/doctools/doxygen/DoxygenMultilineAutoEditStrategy.java @@ -82,8 +82,8 @@ public class DoxygenMultilineAutoEditStrategy extends DefaultMultilineCommentAut * @return a buffer containing the comment content to generate to describe the parameters of * the specified {@link IASTParameterDeclaration} objects. */ - protected StringBuffer documentFunctionParameters(IASTParameterDeclaration[] decls) { - StringBuffer result= new StringBuffer(); + protected StringBuilder documentFunctionParameters(IASTParameterDeclaration[] decls) { + StringBuilder result= new StringBuilder(); for(int i=0; i