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:
Ursprung
bbaea894d4
Commit
b272322105
@ -64,7 +64,7 @@ public abstract class ClassSource {
|
||||
try {
|
||||
return ClassSource.this.loadClass(canonicalName);
|
||||
} catch (ClassNotFoundException e) {
|
||||
return other.getClass();
|
||||
return other.loadClass(canonicalName);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren