Chen Mulong

Results 43 comments of Chen Mulong

@biftekman Yes, please! also a apk would be helpful. You can send it to [email protected] if you want to share it privately. Thanks a lot!

What about this: ```java public class SortParam { Case caseParam; public SortParam(Case caseParam) { this.caseParam = caseParam; } } public enum Case { CASE_SENSITIVE(true), CASE_INSENSITIVE(false); private final boolean value; public...

you are query by check if `setNumber` equals to `null`, which is surely not, since `setNumber` is a `int` field and it is not nullable. If the `setNumber` could be...

Sorry that i didn't read your description carefully. I can confirm it is bug in our side. test case to reproduce it: ```java @Test public void equalTo_nullValueLinkedField() { realm.beginTransaction(); DogPrimaryKey...

I do think adding `--enable-standalone-utils` is not needed if the solution is acceptable :)

I was thinking about some wicked ideas about auto close the Realm instance. The major problem is about Realm instances on the background thread, so if we know the thread...

> Glrnvim does not read environment variable $PATH for some reason and is unable to locate rust applications located in ~/.cargo/bin. I just tried by setting `PATH` and run an...

> so I am assuming you are referring to defining $PATH in neovim, which I was unaware it was even possible to do so. How exactly is that done? What...

Can we merge this PR? Currently, we are blocked by #939 THANKS!