Leak of file descriptors in QueueFile constructor. ``` public QueueFile(File file) throws IOException { if (!file.exists()) initialize(file); raf = open(file); readHeader(); } ``` When `readHeader()` throws and exception `raf` is never closed.
Leak of file descriptors in QueueFile constructor.
When
readHeader()throws and exceptionrafis never closed.