Fix an inconsistent comment.

Change-Id: Iae40dfcca091c9886a05e483f51596c96014e57f
This commit is contained in:
Jeff Brown
2012-01-25 10:42:27 -08:00
parent d4e34d61d0
commit ebc016c01e

View File

@@ -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.