Loading core/java/android/content/IntentFilter.java +6 −1 Original line number Diff line number Diff line Loading @@ -1168,8 +1168,13 @@ public class IntentFilter implements Parcelable { public int match(Uri data, boolean wildcardSupported) { String host = data.getHost(); if (host == null) { if (wildcardSupported && mWild) { // special case, if no host is provided, but the Authority is wildcard, match return MATCH_CATEGORY_HOST; } else { return NO_MATCH_DATA; } } if (false) Log.v("IntentFilter", "Match host " + host + ": " + mHost); if (!wildcardSupported || !WILDCARD.equals(host)) { Loading core/java/android/content/pm/parsing/ParsingPackageUtils.java +1 −1 Original line number Diff line number Diff line Loading @@ -1510,7 +1510,7 @@ public class ParsingPackageUtils { Uri data = null; String dataType = null; String host = IntentFilter.WILDCARD; String host = null; final int numActions = intentInfo.countActions(); final int numSchemes = intentInfo.countDataSchemes(); final int numTypes = intentInfo.countDataTypes(); Loading Loading
core/java/android/content/IntentFilter.java +6 −1 Original line number Diff line number Diff line Loading @@ -1168,8 +1168,13 @@ public class IntentFilter implements Parcelable { public int match(Uri data, boolean wildcardSupported) { String host = data.getHost(); if (host == null) { if (wildcardSupported && mWild) { // special case, if no host is provided, but the Authority is wildcard, match return MATCH_CATEGORY_HOST; } else { return NO_MATCH_DATA; } } if (false) Log.v("IntentFilter", "Match host " + host + ": " + mHost); if (!wildcardSupported || !WILDCARD.equals(host)) { Loading
core/java/android/content/pm/parsing/ParsingPackageUtils.java +1 −1 Original line number Diff line number Diff line Loading @@ -1510,7 +1510,7 @@ public class ParsingPackageUtils { Uri data = null; String dataType = null; String host = IntentFilter.WILDCARD; String host = null; final int numActions = intentInfo.countActions(); final int numSchemes = intentInfo.countDataSchemes(); final int numTypes = intentInfo.countDataTypes(); Loading