Back to project page photo-share-android.
The source code is released under:
Apache License
If you think the Android project photo-share-android 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.project.photoshare.utils; //from w w w .java 2s .com import java.io.IOException; import java.io.InputStream; /** * Created by TakuyaKodama on 14/06/05. */ public class Utils { public static void closeStream(InputStream inputStream) { if (inputStream == null) { return; } try { inputStream.close(); } catch (IOException e) { e.printStackTrace(); } } }