docs: Fixed syntax error in "Content URI patterns" code sample am: 0355128699 am: fb61922063

am: bccf44437c

Change-Id: Ia9cc4bc6517f38c808a95bcf43eff2fe39667ee8
This commit is contained in:
Kevin Hufnagle
2016-09-27 02:25:47 +00:00
committed by android-build-merger

View File

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