blob: 5fc98b4724acd9171c20a9bac641b8ae907b4bf6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 SSI Schaefer IT Solutions GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SSI Schaefer IT Solutions GmbH
*******************************************************************************/
package org.eclipse.tea.library.build.util;
import java.io.Closeable;
/**
* Provides static helpers to work with streams
*/
public class StreamHelper {
/**
* Unconditionally close a <code>Closeable</code> without throwing any
* exception.
*
* @param closeable
* the object to close, may be null or already closed
*/
public static void closeQuietly(Closeable closeable) {
if (closeable == null) {
return;
}
try {
closeable.close();
} catch (Exception e) {
// ignore
}
}
}