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

am: 48bf1ca5d4

Change-Id: Ifa0152751e37cb8032efa6a7d5f191db2834d0e5
This commit is contained in:
Felipe Leme
2017-09-08 19:23:36 +00:00
committed by android-build-merger

View File

@@ -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;
}