From 2f459d2baabc3761d380d18e2a8f7e97d0241f45 Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Mon, 25 Mar 2019 14:49:44 -0400 Subject: [PATCH] Temporarily revert bug intrudecd by fix for #61841 --- .../java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java index c8c3b9d17..e398fdaa1 100644 --- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java +++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFEvaluationSheet.java @@ -67,7 +67,7 @@ final class XSSFEvaluationSheet implements EvaluationSheet { public EvaluationCell getCell(int rowIndex, int columnIndex) { // shortcut evaluation if reference is outside the bounds of existing data // see issue #61841 for impact on VLOOKUP in particular - if (rowIndex > _lastDefinedRow) return null; + // if (rowIndex > _lastDefinedRow) return null; // see https://bz.apache.org/bugzilla/show_bug.cgi?id=61841#c12 for repro of this bug, disabled for now until proper fix... // cache for performance: ~30% speedup due to caching if (_cellCache == null) {