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

Commit a0544899 authored by Felipe Leme's avatar Felipe Leme Committed by Android (Google) Code Review
Browse files

Merge "Minor javadoc fixes."

parents a0c7a852 052c9423
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -261,6 +261,7 @@ public final class ContentCaptureContext implements Parcelable {
         *   example).
         *   <li>A unique identifier of the application state (for example, a conversation between
         *   2 users in a chat app).
         * </ul>
         *
         * <p>See {@link ContentCaptureManager} for more info about the content capture context.
         *
+2 −2
Original line number Diff line number Diff line
@@ -77,12 +77,12 @@ import java.util.Set;
 * </ul>
 *
 * <p>In fact, before using this manager, the app developer should check if it's available. Example:
 *  <code>
 * <pre><code>
 *  ContentCaptureManager mgr = context.getSystemService(ContentCaptureManager.class);
 *  if (mgr != null && mgr.isContentCaptureEnabled()) {
 *    // ...
 *  }
 *  </code>
 *  </code></pre>
 *
 * <p>App developers usually don't need to explicitly interact with content capture, except when the
 * app: