Thuat Nguyen

Results 3 comments of Thuat Nguyen

That is a bug in Parse core. Very difficult to reproduce it.

I had a similar bug reported from crashlytics. But I couldn't reproduce this. How can I encounter this with some steps?

``` public List copyToRealmOrUpdate(Iterable objects) { if (objects == null) { return new ArrayList(0); } ArrayList realmObjects = new ArrayList(); for (E object : objects) { realmObjects.add(copyToRealmOrUpdate(object)); } return realmObjects;...