Naruszenie sonaru: „Metoda może nie zamknąć strumienia w wyjątku”

Mam tę metodę:

 private void unZipElementsTo(String inputZipFileName, String destPath) throws FileNotFoundException, IOException {

        OutputStream out = null;
        InputStream in = null;
        ZipFile zf = null;

        try {
            zf = new ZipFile(inputZipFileName);

            for (Enumeration<? extends ZipEntry> em = zf.entries(); em.hasMoreElements();) {
                ZipEntry entry = em.nextElement();
                String targetFile = destPath + FILE_SEPARATOR + entry.toString().replace("/", FILE_SEPARATOR);
                File temp = new File(targetFile);

                if (!temp.getParentFile().exists()) {
                    temp.getParentFile().mkdirs();
                }

                in = zf.getInputStream(entry);

                out = new FileOutputStream(targetFile);
                byte[] buf = new byte[4096];
                int len;
                while ((len = in.read(buf)) > 0) {
                    out.write(buf, 0, len);
                }
                out.flush();
                out.close();
                in.close();
            }
        }
        finally
        {
            if (out!=null) out.close();
            if (zf!=null) zf.close();
            if (in!=null) in.close();
        }
    }

Dla tej metody Sonar daje mi to naruszenie:

Zła praktyka - zamknięcie strumienia metodą może się nie powieść, wyjątek unZipElementsTo (String, String) może nie zamknąć strumienia w wyjątku

Ale nie widzę tam żadnych naruszeń. Może to tylko fałszywie pozytywne?

questionAnswers(4)

yourAnswerToTheQuestion