mirror of https://github.com/apache/openjpa.git
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:
parent
b24d729deb
commit
f8179d7282
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue