Here you can find the source of releaseQuietly(FileLock lock)
static void releaseQuietly(FileLock lock)
//package com.java2s; //License from project: Apache License import java.nio.channels.FileLock; public class Main { static void releaseQuietly(FileLock lock) { try {/*from ww w .ja va 2s .c o m*/ lock.release(); } catch (Throwable t) { } } }