bug 59432: move loop invariants outside the loop to marginally improve code execution speed
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748832 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
be7fd6ffb6
commit
21e8ce5979
@ -167,17 +167,17 @@ public final class XSSFName implements Name {
|
||||
validateName(name);
|
||||
|
||||
int sheetIndex = getSheetIndex();
|
||||
|
||||
//Check to ensure no other names have the same case-insensitive name
|
||||
for (int i = 0; i < _workbook.getNumberOfNames(); i++) {
|
||||
int numberOfNames = _workbook.getNumberOfNames();
|
||||
//Check to ensure no other names have the same case-insensitive name at the same scope
|
||||
for (int i = 0; i < numberOfNames; i++) {
|
||||
XSSFName nm = _workbook.getNameAt(i);
|
||||
if (nm != this) {
|
||||
if(name.equalsIgnoreCase(nm.getNameName()) && sheetIndex == nm.getSheetIndex()){
|
||||
if ((nm != this)
|
||||
&& name.equalsIgnoreCase(nm.getNameName())
|
||||
&& (sheetIndex == nm.getSheetIndex())) {
|
||||
String msg = "The "+(sheetIndex == -1 ? "workbook" : "sheet")+" already contains this name: " + name;
|
||||
throw new IllegalArgumentException(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
_ctName.setName(name);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user