Back to project page o365api-android-get-events-app.
The source code is released under:
MIT License
If you think the Android project o365api-android-get-events-app 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.example.mattleib.myinboxapplication; // w ww.j a v a2 s. c o m import java.io.Closeable; import java.io.IOException; /** * Created by mattleib on 1/26/2015. */ public class AppHelper { public static void close(Closeable obj){ if(obj!=null){ try { obj.close(); }catch (IOException e){ //ignore } } } }