Commit 87dc5763 authored by Paul Miller's avatar Paul Miller Committed by Android Git Automerger
Browse files

am 36180ed8: Merge "Finish removing "inline" URI scheme"

* commit '36180ed8':
  Finish removing "inline" URI scheme
parents 5c91d966 36180ed8
......@@ -96,7 +96,6 @@
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:scheme="inline" />
<data android:mimeType="text/html"/>
<data android:mimeType="text/plain"/>
<data android:mimeType="application/xhtml+xml"/>
......
......@@ -32,7 +32,7 @@ public class UrlUtils {
"(?i)" + // switch on case insensitive matching
"(" + // begin group for schema
"(?:http|https|file):\\/\\/" +
"|(?:inline|data|about|javascript):" +
"|(?:data|about|javascript):" +
"|(?:.*:.*@)" +
")" +
"(.*)" );
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment