Skip to content

Commit

Permalink
perf(YouTube - GmsCore support): Improve performance by using hashsets
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX authored and LisoUseInAIKyrios committed Oct 19, 2024
1 parent ece86f2 commit 2c5d390
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ abstract class BaseGmsCoreSupportPatch(
/**
* A list of all permissions.
*/
val PERMISSIONS = listOf(
val PERMISSIONS = setOf(
// C2DM / GCM
"com.google.android.c2dm.permission.RECEIVE",
"com.google.android.c2dm.permission.SEND",
Expand All @@ -266,7 +266,7 @@ abstract class BaseGmsCoreSupportPatch(
/**
* All intent actions.
*/
val ACTIONS = listOf(
val ACTIONS = setOf(
// location
"com.google.android.gms.location.places.ui.PICK_PLACE",
"com.google.android.gms.location.places.GeoDataApi",
Expand Down Expand Up @@ -345,7 +345,7 @@ abstract class BaseGmsCoreSupportPatch(
/**
* All content provider authorities.
*/
val AUTHORITIES = listOf(
val AUTHORITIES = setOf(
// gsf
"com.google.android.gsf.gservices",
"com.google.settings",
Expand Down

0 comments on commit 2c5d390

Please sign in to comment.