Skip to content

Commit bd852d1

Browse files
committed
Remove unused utility function launchApplication(...)
Not needed since dc05d12.
1 parent dc05d12 commit bd852d1

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

app/src/main/java/io/github/yawnoc/utilities/Contexty.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,4 @@ public static void openInBrowser(final Context context, final String uri) {
7272
context.startActivity(browserIntent);
7373
}
7474

75-
public static void launchApplication(
76-
final Context context,
77-
final String packageName
78-
)
79-
{
80-
final Intent launchIntent =
81-
context.getPackageManager().getLaunchIntentForPackage(packageName);
82-
83-
if (launchIntent != null) {
84-
context.startActivity(launchIntent);
85-
}
86-
}
87-
8875
}

0 commit comments

Comments
 (0)