Back to project page NativeClient-Android.
The source code is released under:
Apache License
If you think the Android project NativeClient-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.microsoft.aad.taskapplication.helpers; //from w w w . j a va 2s. c o m import java.io.Closeable; import java.io.IOException; public class AppHelper { public static void close(Closeable obj){ if(obj!=null){ try { obj.close(); }catch (IOException e){ //ignore } } } }