From 164c239a52ac44383c4cbad9cbf607a9e93b7f57 Mon Sep 17 00:00:00 2001 From: Dominik Stadler Date: Sun, 7 Jul 2024 05:03:15 +0000 Subject: HSSFWorkbook.getSheet(): Return first found sheet We do not need to loop over all sheets always but should be able to return the first found sheet. This may change semantics for cases where there are multiple sheets where name only differs in case, but the JavaDoc did not state which one will be returned. All three implementations (HSSF, XSSF, SXSSF) now behave the same way. Closes #653 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1918982 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'poi') diff --git a/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java b/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java index 336fc2bc3e..9442589189 100644 --- a/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java +++ b/poi/src/main/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java @@ -1055,24 +1055,25 @@ public final class HSSFWorkbook extends POIDocument implements Workbook { } /** - * Get sheet with the given name (case insensitive match) + * Get sheet with the given name (case insensitive match). + * + * If there are multiple matches, the first sheet from the list + * of sheets is returned. * * @param name of the sheet * @return HSSFSheet with the name provided or {@code null} if it does not exist */ - @Override public HSSFSheet getSheet(String name) { - HSSFSheet retval = null; - for (int k = 0; k < _sheets.size(); k++) { String sheetname = workbook.getSheetName(k); if (sheetname.equalsIgnoreCase(name)) { - retval = _sheets.get(k); + return _sheets.get(k); } } - return retval; + + return null; } /** -- cgit v1.2.3