summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/db/CommandName.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/db/CommandName.java')
-rw-r--r--wizards/com/sun/star/wizards/db/CommandName.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/db/CommandName.java b/wizards/com/sun/star/wizards/db/CommandName.java
index aa8a4f9c7ea9..3c6686868ff3 100644
--- a/wizards/com/sun/star/wizards/db/CommandName.java
+++ b/wizards/com/sun/star/wizards/db/CommandName.java
@@ -205,9 +205,7 @@ public class CommandName
{
sName = "";
}
- String ReturnQuote = "";
- ReturnQuote = _sIdentifierQuote + sName + _sIdentifierQuote;
- return ReturnQuote;
+ return new StringBuilder(_sIdentifierQuote).append(sName).append(_sIdentifierQuote).toString();
}
public void setAliasName(String _AliasName)