Closed xeruf closed 5 years ago
I reproduced the issue. Closing as fixed.
Notes:
Nullability issue caused by the Kotlin-Java interop. I have found some more related to Image in the TreeItems.kt.
Unfortunately this is tricky as Inspector is not ready to have TreeView<Any?> because tree(o: Any) signature. I provided a simple and almost ideal workaround using function:
private fun Any?.orNone(): Any = this ?: "<none>"
Why are you closing as fixed? You should use the "Fix" syntax in the commit and then push that commit to close it. Or do you have it fixed locally and not pushed? An issue should usually only be closed once the fix is on master.
Indeed I have it fixed locally. You are right and I'm sorry. I was working on bugs and just kept delaying the push... my bad.
I know that feeling ^^ but more commits should almost always be better, and putting the fix to an issue in a separate commit should be preferred, then you can also simply instantly push and stash or commit the other stuff first if you want.
Oh I see you already did it in many small commits, but you just didn't push them ^^
Exactly. I just prefer to push in chunks... Particularly when im burning through the bugs. Also, it allows me to leave the commits in an incubation phase and fix problems before they make it to remote.