mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
Switched to using the StringBuffer instead of StringBuilder
This commit is contained in:
parent
24516594c6
commit
98c1263138
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ public class ChangeBuildConfigActionBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (commonName) {
|
if (commonName) {
|
||||||
StringBuilder builder = new StringBuilder(sName);
|
StringBuffer builder = new StringBuffer(sName);
|
||||||
if (commonDesc) {
|
if (commonDesc) {
|
||||||
if (sDesc != null) {
|
if (sDesc != null) {
|
||||||
builder.append(" ("); //$NON-NLS-1$
|
builder.append(" ("); //$NON-NLS-1$
|
||||||
|
|
Loading…
Add table
Reference in a new issue