From 9e23a426a66199fb3c36100256933b36f7d7c60e Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 22 Feb 2017 08:45:20 -0800 Subject: [PATCH] Fix backward logic re: use of code cache. --- src/main/java/com/threerings/getdown/classpath/ClassPaths.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/threerings/getdown/classpath/ClassPaths.java b/src/main/java/com/threerings/getdown/classpath/ClassPaths.java index 84b5607..f7ce8e7 100644 --- a/src/main/java/com/threerings/getdown/classpath/ClassPaths.java +++ b/src/main/java/com/threerings/getdown/classpath/ClassPaths.java @@ -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); } /**