Currently, it writes:
public FontManager getFontManager() {
return this.getFontManager();
}
It will cause stackoverflowexception.
It should be:
public FontManager getFontManager() {
return this.mEngine.getFontManager();
}
Original issue reported on code.google.com by llhbad...@gmail.com on 1 Dec 2011 at 2:33
Original issue reported on code.google.com by
llhbad...@gmail.com
on 1 Dec 2011 at 2:33