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

Commit 7f351011 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Fixed CharSequenceTransformation to use find() instead of matches()." into oc-mr1-dev

am: 48bf1ca5

Change-Id: Ifa0152751e37cb8032efa6a7d5f191db2834d0e5
parents e9c6eccd 48bf1ca5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ public final class CharSequenceTransformation extends InternalTransformation imp
            }
            try {
                final Matcher matcher = field.first.matcher(value);
                if (!matcher.matches()) {
                if (!matcher.find()) {
                    if (sDebug) Log.d(TAG, "match for " + field.first + " failed on id " + id);
                    return;
                }