diff options
author | Jeff Brown <jeffbrown@google.com> | 2012-01-25 10:42:27 -0800 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2012-01-25 10:43:04 -0800 |
commit | ebc016c01ea9d5707287cfc19ccc59b21a486c00 (patch) | |
tree | ffb665ef140329cf57a6a1b59e4c6bee0b0ce200 /core/java | |
parent | d4e34d61d01222ff90684b9a1dc4f9c8be560e7c (diff) | |
download | frameworks_base-ebc016c01ea9d5707287cfc19ccc59b21a486c00.zip frameworks_base-ebc016c01ea9d5707287cfc19ccc59b21a486c00.tar.gz frameworks_base-ebc016c01ea9d5707287cfc19ccc59b21a486c00.tar.bz2 |
Fix an inconsistent comment.
Change-Id: Iae40dfcca091c9886a05e483f51596c96014e57f
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/database/sqlite/SQLiteCursor.java | 6 |
1 files changed, 2 insertions, 4 deletions
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. |