315316317318319320321322323324325
mc.lock(); Runnable closeRunnable = new Runnable() { public void run() { // Unlock the connection now that the user has finished with it mc.unlock(); if (!enlisted) { // TODO Anything to do here? } } };
243244245246247248249250251252253