You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using HashSet is not appropriate for small sets like the one used in VpnExemptionsActivity, AppsTogglesAdapter, etc, as it wastes ram. An ArraySet or similar should be used instead.
Note: ArraySet is not available in API 21, so a wrapper class should probably be created
The text was updated successfully, but these errors were encountered:
Using HashSet is not appropriate for small sets like the one used in VpnExemptionsActivity, AppsTogglesAdapter, etc, as it wastes ram. An ArraySet or similar should be used instead.
Note: ArraySet is not available in API 21, so a wrapper class should probably be created
The text was updated successfully, but these errors were encountered: