Back to project page Droideez.
The source code is released under:
MIT License
If you think the Android project Droideez 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.caseycrites.droideez; /*www . ja va2 s. co m*/ import java.io.IOException; import java.io.InputStream; /** * Collection of methods related to *Streams. */ public class StreamUtils { private StreamUtils() {} /** * Swallow IOException on close. * * @param s InputStream to close. */ public static void closeQuitely(InputStream s) { try { s.close(); } catch (IOException e) {} } }