We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c9cb5a commit 8c2eec5Copy full SHA for 8c2eec5
src/main/java/com/github/pjfanning/xlsx/impl/StreamingSheetReader.java
@@ -176,7 +176,6 @@ && isSpreadsheetTag(event.asStartElement().getName())) {
176
Attribute refAttr = startElement.getAttributeByName(new QName("ref"));
177
String ref = refAttr != null ? refAttr.getValue() : null;
178
if(ref != null) {
179
- log.error("found dimension ref {}", ref);
180
// ref is formatted as A1 or A1:F25. Take the last numbers of this string and use it as lastRowNum
181
for(int i = ref.length() - 1; i >= 0; i--) {
182
if(!Character.isDigit(ref.charAt(i))) {
0 commit comments