mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix #I2AOQW
This commit is contained in:
@@ -171,4 +171,3 @@ public class JSONUtilTest {
|
|||||||
"}");
|
"}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -88,7 +88,8 @@ public class SheetRidReader extends DefaultHandler {
|
|||||||
String rid = null;
|
String rid = null;
|
||||||
String name = null;
|
String name = null;
|
||||||
for (int i = 0; i < length; i++) {
|
for (int i = 0; i < length; i++) {
|
||||||
switch (attributes.getLocalName(i)) {
|
final String attrName = attributes.getQName(i);
|
||||||
|
switch (attrName) {
|
||||||
case SHEET_ID_ATTR:
|
case SHEET_ID_ATTR:
|
||||||
sheetId = attributes.getValue(i);
|
sheetId = attributes.getValue(i);
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user