Skip to content

Commit

Permalink
Merge "Fix documentation bug in SQLiteDatabase"
Browse files Browse the repository at this point in the history
  • Loading branch information
Treehugger Robot authored and Gerrit Code Review committed May 12, 2016
2 parents b44d420 + 8fc3144 commit 21d061e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions core/java/android/database/sqlite/SQLiteDatabase.java
Original file line number Diff line number Diff line change
Expand Up @@ -1429,10 +1429,9 @@ public long replaceOrThrow(String table, String nullColumnHack,
* row. The keys should be the column names and the values the
* column values
* @param conflictAlgorithm for insert conflict resolver
* @return the row ID of the newly inserted row
* OR the primary key of the existing row if the input param 'conflictAlgorithm' =
* {@link #CONFLICT_IGNORE}
* OR -1 if any error
* @return the row ID of the newly inserted row OR <code>-1</code> if either the
* input parameter <code>conflictAlgorithm</code> = {@link #CONFLICT_IGNORE}
* or an error occurred.
*/
public long insertWithOnConflict(String table, String nullColumnHack,
ContentValues initialValues, int conflictAlgorithm) {
Expand Down

0 comments on commit 21d061e

Please sign in to comment.