https://issues.apache.org/bugzilla/show_bug.cgi?id=55036
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #1 from Yegor Kozlov <[email protected]> --- Thanks for the patch, applied in r1488729 I had to revert FunctionMetadataReader.java because it contained a debug code specific for your local environment: public static FunctionMetadataRegistry createRegistry() { - InputStream is = FunctionMetadataReader.class.getResourceAsStream(METADATA_FILE_NAME); + InputStream is = null; + try { + is = new FileInputStream("C:\\innoveo\\workspace\\apache-poi-complexwildcard\\poi\\src\\resources\\main\\org\\apache\\poi\\ss\\formula\\function\\functionMetadata.txt"); + } catch (FileNotFoundException e) { + e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates. + } + //FunctionMetadataReader.class.getResourceAsStream(METADATA_FILE_NAME); if (is == null) { throw new RuntimeException("resource '" + METADATA_FILE_NAME + "' not found"); Yegor -- 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]
