package org.andengine.util; import android.database.Cursor; /** * (c) 2013 Zynga Inc. * * @author Nicolas Gramlich * @since 15:30:15 - 23.01.2013 */ public final class DatabaseUtils { // =========================================================== // Constants // =========================================================== // =========================================================== // Fields // =========================================================== // =========================================================== // Constructors // =========================================================== private DatabaseUtils() { } // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods for/from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== public static final void close(final Cursor pCursor) { if (pCursor != null) { pCursor.close(); } } // =========================================================== // Inner and Anonymous Classes // =========================================================== }