Java tutorial
//package com.java2s; //License from project: Open Source License import android.database.Cursor; public class Main { /** * Closed the cursor if it is not null * @param cursor the cursor to be closed */ private static void closeCursor(Cursor cursor) { if (cursor != null) cursor.close(); } }