Skip to content

Commit

Permalink
Mark a fail-over case as such.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgruber committed Jun 28, 2013
1 parent 525cb97 commit f457d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/dagger/internal/FailoverLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class FailoverLoader implements Loader {
ClassLoader classLoader, boolean mustHaveInjections) {
try {
return GeneratedAdapters.initInjectAdapter(className, classLoader);
} catch (ClassNotFoundException ignored) {
} catch (ClassNotFoundException ignored /* failover case */) {
try {
// A null classloader is the system classloader.
classLoader = (classLoader != null) ? classLoader : ClassLoader.getSystemClassLoader();
Expand Down

0 comments on commit f457d87

Please sign in to comment.