pulsar-io/file/src/main/java/org/apache/pulsar/io/file/utils/GZipFiles.java [86:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static void closeSafely(Closeable closeable) {
      if (closeable != null) {
        try {
          closeable.close();
        } catch (IOException e) {
          // Ignore
        }
      }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pulsar-io/file/src/main/java/org/apache/pulsar/io/file/utils/ZipFiles.java [75:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static void closeSafely(Closeable closeable) {
        if (closeable != null) {
          try {
            closeable.close();
          } catch (IOException e) {
            // Ignore
          }
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



