PCAPdroid icon indicating copy to clipboard operation
PCAPdroid copied to clipboard

Replace HashSet with ArraySet

Open emanuele-f opened this issue 1 year ago • 0 comments

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

emanuele-f avatar Feb 01 '24 09:02 emanuele-f