Package com.saperion.common.io
Class Closeables
java.lang.Object
com.saperion.common.io.Closeables
This class contains utility-methods for instances of
AutoCloseable
.- Author:
- cmerkel
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
closeQuietly
(AutoCloseable autoCloseable) Closes the providedAutoCloseable
.
-
Method Details
-
closeQuietly
Closes the providedAutoCloseable
.Exception
s that might occur will be caught and logged at error-level. If autoCloseable is null, this method does nothing.- Parameters:
autoCloseable
- the AutoCloseable to close
-