OPENJPA-1868: Miscellaneous FindBugs suggested performance improvement..

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1030173 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2010-11-02 18:53:14 +00:00
parent b24d729deb
commit f8179d7282
1 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ public class IdentifierUtilImpl implements IdentifierUtil, Configurable {
}
if (delimited) {
combined = delimit(config, rule, combined.toString());
combined = delimit(config, rule, combined);
}
return combined;
@ -125,7 +125,7 @@ public class IdentifierUtilImpl implements IdentifierUtil, Configurable {
}
}
if (delimited) {
combined = delimit(config, namingRule, combined.toString());
combined = delimit(config, namingRule, combined);
}
return combined;