2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-01 06:35:09 +00:00

Fix networkpacket getter visibility

This commit is contained in:
Albert Vaca Cintora
2023-06-16 22:18:35 +02:00
parent 2a273ff07f
commit ad48a25d79

View File

@@ -167,7 +167,7 @@ public class NetworkPacket {
} }
} }
private Set<String> getStringSet(String key) { public Set<String> getStringSet(String key) {
JSONArray jsonArray = mBody.optJSONArray(key); JSONArray jsonArray = mBody.optJSONArray(key);
if (jsonArray == null) return null; if (jsonArray == null) return null;
Set<String> list = new HashSet<>(); Set<String> list = new HashSet<>();