Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3cbcfb7f authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge "docs: Fixed syntax error in "Content URI patterns" code sample am:...

Merge "docs: Fixed syntax error in "Content URI patterns" code sample am: 03551286 am: fb619220" into nyc-mr1-dev-plus-aosp
parents 0de1db9f bccf4443
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -460,7 +460,7 @@ public class ExampleProvider extends ContentProvider {
                 * present. Get the last path segment from the URI; this is the _ID value.
                 * Then, append the value to the WHERE clause for the query
                 */
                selection = selection + "_ID = " uri.getLastPathSegment();
                selection = selection + "_ID = " + uri.getLastPathSegment();
                break;

            default: