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

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

Merge "Fixed CharSequenceTransformation to use find() instead of matches()."...

Merge "Fixed CharSequenceTransformation to use find() instead of matches()." into oc-mr1-dev am: 48bf1ca5
am: 7f351011

Change-Id: Ib20cd412b29ab2a2d84ea9c28998c3c811140e05
parents c9982ce3 7f351011
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;
                }