Skip to content

Commit 8c2eec5

Browse files
author
PJ Fanning
committed
remove stray log stmt
1 parent 4c9cb5a commit 8c2eec5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/github/pjfanning/xlsx/impl/StreamingSheetReader.java

-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ && isSpreadsheetTag(event.asStartElement().getName())) {
176176
Attribute refAttr = startElement.getAttributeByName(new QName("ref"));
177177
String ref = refAttr != null ? refAttr.getValue() : null;
178178
if(ref != null) {
179-
log.error("found dimension ref {}", ref);
180179
// ref is formatted as A1 or A1:F25. Take the last numbers of this string and use it as lastRowNum
181180
for(int i = ref.length() - 1; i >= 0; i--) {
182181
if(!Character.isDigit(ref.charAt(i))) {

0 commit comments

Comments
 (0)