Removed try/catch for null url

This commit is contained in:
tcely 2021-05-02 22:22:39 -04:00
parent be252f9a42
commit 94ea635ca4
No known key found for this signature in database
GPG Key ID: E361829E1B3040DB
1 changed files with 1 additions and 5 deletions

View File

@ -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());