mirror of https://github.com/apache/poi.git
Fix inconsistent whitespace
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1677565 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a874e223af
commit
c46b7d0329
|
@ -31,9 +31,7 @@ import java.util.zip.Checksum;
|
|||
import org.apache.poi.EmptyFileException;
|
||||
|
||||
public final class IOUtils {
|
||||
|
||||
private static final POILogger logger = POILogFactory
|
||||
.getLogger( IOUtils.class );
|
||||
private static final POILogger logger = POILogFactory.getLogger( IOUtils.class );
|
||||
|
||||
private IOUtils() {
|
||||
// no instances of this class
|
||||
|
@ -181,14 +179,10 @@ public final class IOUtils {
|
|||
* @param closeable
|
||||
* resource to close
|
||||
*/
|
||||
public static void closeQuietly( final Closeable closeable )
|
||||
{
|
||||
try
|
||||
{
|
||||
public static void closeQuietly( final Closeable closeable ) {
|
||||
try {
|
||||
closeable.close();
|
||||
}
|
||||
catch ( Exception exc )
|
||||
{
|
||||
} catch ( Exception exc ) {
|
||||
logger.log( POILogger.ERROR, "Unable to close resource: " + exc,
|
||||
exc );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue