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

Commit 33ffe5f4 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Clarified ContentCaptureCondition constructor." into qt-dev am: bef3d76b

am: b9632bb2

Change-Id: I28a8e79358e4f131d37b68bb67a8098a5d7549fa
parents 81ed7008 b9632bb2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -54,7 +54,9 @@ public final class ContentCaptureCondition implements Parcelable {
     *
     * @param locusId id of the condition, as defined by
     * {@link ContentCaptureContext#getLocusId()}.
     * @param flags either {@link ContentCaptureCondition#FLAG_IS_REGEX} or {@code 0}.
     * @param flags either {@link ContentCaptureCondition#FLAG_IS_REGEX} (to use a regular
     * expression match) or {@code 0} (in which case the {@code LocusId} must be an exact match of
     * the {@code LocusId} used in the {@link ContentCaptureContext}).
     */
    public ContentCaptureCondition(@NonNull LocusId locusId, @Flags int flags) {
        this.mLocusId = Preconditions.checkNotNull(locusId);