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

Commit 461801b7 authored by Antonio Kantek's avatar Antonio Kantek Committed by Android (Google) Code Review
Browse files

Merge "Remove check for SUBTYPE_MODE_ANY in containsSubtypeOf" into main

parents 6b1f843d 86529d19
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -86,8 +86,7 @@ final class SubtypeUtils {
                    continue;
                }
            }
            if (mode == SUBTYPE_MODE_ANY || TextUtils.isEmpty(mode)
                    || mode.equalsIgnoreCase(subtype.getMode())) {
            if (TextUtils.isEmpty(mode) || mode.equalsIgnoreCase(subtype.getMode())) {
                return true;
            }
        }