Fix backward logic re: use of code cache.

This commit is contained in:
Michael Bayne
2017-02-22 08:45:20 -08:00
parent 4ac9990785
commit 9e23a426a6
@@ -24,7 +24,7 @@ public class ClassPaths
*/
public static ClassPath buildClassPath (Application app) throws IOException
{
return app.useCodeCache() ? buildDefaultClassPath(app) : buildCachedClassPath(app);
return app.useCodeCache() ? buildCachedClassPath(app) : buildDefaultClassPath(app);
}
/**