Back to project page android-shape-imageview.
The source code is released under:
Apache License
If you think the Android project android-shape-imageview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.siyamed.shapeimageview.path.parser; //ww w . java 2s. co m import java.io.InputStream; @SuppressWarnings("FinalStaticMethod") public class IoUtil { public static final void closeQuitely(InputStream is) { if(is != null) { try { is.close(); } catch (Throwable ignored) { //ignored } } } }