mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-01-09 04:28:05 -05:00
fixed comparison by reference
This commit is contained in:
parent
258e769ae7
commit
fab45ba25c
@ -44,7 +44,7 @@ public class AccessManager
|
||||
|
||||
public static ArrayList<String> stringToStringArray(String s) {
|
||||
ArrayList<String> strings = new ArrayList<String>();
|
||||
if ((s != null) && (s != "")) {
|
||||
if (TextUtils.isEmpty(s) == false) {
|
||||
try {
|
||||
JSONArray a = new JSONArray(s);
|
||||
for (int i = 0; i < a.length(); i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user