mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 14:47:29 +00:00
Removed try/catch for null url
This commit is contained in:
parent
be252f9a42
commit
94ea635ca4
@ -15,11 +15,7 @@ public final class IntentUtils {
|
||||
|
||||
@Nullable
|
||||
public static IntentModel parseUrl(@NonNull final String url) {
|
||||
try {
|
||||
final Uri parsedUrl = Uri.parse(url).normalizeScheme();
|
||||
} catch (NullPointerException e) {
|
||||
return null;
|
||||
}
|
||||
final Uri parsedUrl = Uri.parse(url).normalizeScheme();
|
||||
|
||||
// final String domain = parsedUrl.getHost().replaceFirst("^www\\.", "");
|
||||
// final boolean isHttpsUri = "https".equals(parsedUrl.getScheme());
|
||||
|
Loading…
Reference in New Issue
Block a user