148149150151152153154155156157158
private FileLockCommunicator getCommunicator() { lock.lock(); try { assertNotStopped(); if (communicator == null) { communicator = new FileLockCommunicator(addressFactory); } return communicator; } finally { lock.unlock(); }