Changed: Rename ShareUtils openURL() to openUrl()

This commit is contained in:
agnostic-apollo
2022-01-22 19:01:42 +05:00
parent 6fea1fbddc
commit f3f434af92
3 changed files with 4 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ public class ShareUtils {
* @param context The context for operations.
* @param url The url to open.
*/
public static void openURL(final Context context, final String url) {
public static void openUrl(final Context context, final String url) {
if (context == null || url == null || url.isEmpty()) return;
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);