Archiviert
13
0

Fix a bug preventing ClassSource.retry() from working correctly.

We returned the class of the other ClassSource, instead of invoking
its loadClass() method.
Dieser Commit ist enthalten in:
Kristian S. Stangeland 2014-05-17 17:29:37 +02:00
Ursprung bbaea894d4
Commit b272322105

Datei anzeigen

@ -64,7 +64,7 @@ public abstract class ClassSource {
try { try {
return ClassSource.this.loadClass(canonicalName); return ClassSource.this.loadClass(canonicalName);
} catch (ClassNotFoundException e) { } catch (ClassNotFoundException e) {
return other.getClass(); return other.loadClass(canonicalName);
} }
} }
}; };