asafbibas / jmonkeyengine

Automatically exported from code.google.com/p/jmonkeyengine
0 stars 0 forks source link

Infinite loop in AndroidHarness.onCreate #476

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In AndroidHarness.onCreate, there's the following code:

        do {
            if (log.getHandlers().length == 0) {
                log = logger.getParent();

This wil result in an infinite loop if the initial logger has no handlers but 
does have a parent. The last line quoted above should be log = log.getParent();

Original issue reported on code.google.com by sba...@google.com on 8 Mar 2012 at 6:11

GoogleCodeExporter commented 8 years ago

Original comment by ShadowIs...@gmail.com on 1 Jun 2012 at 4:05