From ebc016c01ea9d5707287cfc19ccc59b21a486c00 Mon Sep 17 00:00:00 2001 From: Jeff Brown Date: Wed, 25 Jan 2012 10:42:27 -0800 Subject: Fix an inconsistent comment. Change-Id: Iae40dfcca091c9886a05e483f51596c96014e57f --- core/java/android/database/sqlite/SQLiteCursor.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'core/java/android/database/sqlite') diff --git a/core/java/android/database/sqlite/SQLiteCursor.java b/core/java/android/database/sqlite/SQLiteCursor.java index 946300f..82bb23e 100644 --- a/core/java/android/database/sqlite/SQLiteCursor.java +++ b/core/java/android/database/sqlite/SQLiteCursor.java @@ -65,8 +65,7 @@ public class SQLiteCursor extends AbstractWindowedCursor { * interface. For a query such as: {@code SELECT name, birth, phone FROM * myTable WHERE ... LIMIT 1,20 ORDER BY...} the column names (name, birth, * phone) would be in the projection argument and everything from - * {@code FROM} onward would be in the params argument. This constructor - * has package scope. + * {@code FROM} onward would be in the params argument. * * @param db a reference to a Database object that is already constructed * and opened. This param is not used any longer @@ -86,8 +85,7 @@ public class SQLiteCursor extends AbstractWindowedCursor { * interface. For a query such as: {@code SELECT name, birth, phone FROM * myTable WHERE ... LIMIT 1,20 ORDER BY...} the column names (name, birth, * phone) would be in the projection argument and everything from - * {@code FROM} onward would be in the params argument. This constructor - * has package scope. + * {@code FROM} onward would be in the params argument. * * @param editTable the name of the table used for this query * @param query the {@link SQLiteQuery} object associated with this cursor object. -- cgit v1.1