https://issues.apache.org/bugzilla/show_bug.cgi?id=47520
Roberto Manicardi <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #8 from Roberto Manicardi <[email protected]> 2009-07-16 00:07:18 PST --- Yegor, there is an error in the file src/ooxml/testcases/org/apache/poi/xssf/model/TestMapInfo.java the following piece of code in method testMapInfoExists for (XSSFMap map : mapInfo) { Node xmlSchema = map.getSchema(); assertNotNull(xmlSchema); } should be substituted by for(XSSFMap map: mapInfo.getAllXSSFMaps()){ Node xmlSchema = map.getSchema(); assertNotNull(xmlSchema); } (add .getAllXSSFMaps() to mapInfo) otherwhile the code won't compile. Regards, Roberto -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
