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

Commit 747d945b authored by Hemal Patel's avatar Hemal Patel Committed by android-build-merger
Browse files

Merge "Docs: Fixed an invalid initialization of ExampleProvider member in...

Merge "Docs: Fixed an invalid initialization of ExampleProvider member in Content URI patterns docs sample" into mnc-io-docs am: 709f0df0
am: 71b5005a

* commit '71b5005a':
  Docs: Fixed an invalid initialization of ExampleProvider member in Content URI patterns docs sample

Change-Id: I09b59dd2cc85de4478012e2326bfce1cfd314e6b
parents be2527b9 71b5005a
Loading
Loading
Loading
Loading
+20 −18
Original line number Diff line number Diff line
@@ -409,13 +409,14 @@ page.title=Creating a Content Provider
public class ExampleProvider extends ContentProvider {
...
    // Creates a UriMatcher object.
    private static final UriMatcher sUriMatcher;
...
    private static final UriMatcher sUriMatcher = new UriMatcher(UriMatcher.NO_MATCH);

    static {
        /*
         * The calls to addURI() go here, for all of the content URI patterns that the provider
         * should recognize. For this snippet, only the calls for table 3 are shown.
         */
...

        /*
         * Sets the integer value for multiple rows in table 3 to 1. Notice that no wildcard is used
         * in the path
@@ -428,6 +429,7 @@ public class ExampleProvider extends ContentProvider {
         * "content://com.example.app.provider/table3 doesn't.
         */
        sUriMatcher.addURI("com.example.app.provider", "table3/#", 2);
    }
...
    // Implements ContentProvider.query()
    public Cursor query(