* loader, replacing it with a fully functional one. Whether the
* request has actually succeeded can be determined by overriding
* {@link SuicidalKindlet#instantiateDelegate(AbstractKindlet)}.
*/
public SuicidalKindlet(boolean replaceClassLoader) {
AbstractKindlet del = null;
if (replaceClassLoader && jailbreak.isAvailable()) {
ClassLoader cl = jailbreak.getContext().classLoader;
if (cl != this.getClass().getClassLoader()) {
try {
Class better = cl.loadClass(this.getClass().getName());