java closeQuietlysteemCreated with Sketch.

in java •  7 years ago 

public static void closeQuietly(Closeable closeable) {
if (closeable != null) {
try {
closeable.close();
closeable = null;
} catch (IOException ex) {
}
}
}

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!