Harbs opened a new issue #102: MXML tag without prefix causes NullPointerException URL: https://github.com/apache/royale-compiler/issues/102 The exception is generated in MXMLClassReferenceNodeBase on line 528: `if (uri.equals("http://www.w3.org/1999/xhtml"))` Some example MXML: ```` <palette:IconToggle id="leftButton"> <materialIcon> <mdl:MaterialIcon text="format_align_left"/> </materialIcon> </palette:IconToggle> ```` `palette:IconToggle` subclasses `mdl:IconToggle` In this case `String uri = childTag.getURI();` results in `uri` being `null` for `<materialIcon>` We should probably have an error which directs the user to fix this.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
