show/hide this revision's text 2 Moved l.lock() outside of try block.

A try/finally block is the closest thing that you can get to this behaviour:

Lock l = new Lock();
try {
    l.lock();  // Call the lock before calling try.
try {
    // Do some processing.
    // All code must go in here including break, return etc.
    return something;
} finally {
    l.unlock();
}
show/hide this revision's text 1

A try/finally block is the closest thing that you can get to this behaviour:

Lock l = new Lock();
try {
    l.lock();
    // Do some processing.
    // All code must go in here including break, return etc.
    return something;
} finally {
    l.unlock();
}