Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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();
    }
}