Martin Häusler

Results 70 comments of Martin Häusler

How to test: - open any sqlite db in the browser - open the sql editor - run the following query: `select json('{}')` If you don't get an error running...

Sorry to necro-post this issue but I'd like to add my voice to this as well. My team developed an application with a REST API which extensively relies on `@JsonSubType`s...

@swankjesse that's an excellent question... I'll need to do some experimentation, as okio occurs as a 3rd level transitive dependency for my project (I use OpenStack4J, which uses Okhttp, which...

@swankjesse it turns out that an outdated dependency in our project had a transitive dependency on okio 2.2.2. We've updated that, all good now :)

@chippmann Reloading the main jar file sounds plausible. What I find very strange is this (at least from the trace I've posted above, maybe there are also other causes): >...

The following happened while I was rebuilding my Kotlin project (and the GDJ files) while the godot editor was open: ``` Godot-JVM: Build lock present. Not reloading... Godot-JVM: Changes detected,...

@chippmann unfortunately no. Please consider the following class: ```kotlin @RegisterClass class ArrayCrashTest: Node3D() { @Export @RegisterProperty lateinit var testArray: VariantArray } ``` The steps to reproduce the issue are quite...

By the way, it would be super cool if this "Godot-JVM: An Exception has occurred!" would actually print the exception as well :sweat_smile:

@chippmann I've never seen this issue again ever since. Maybe it was some sort of race condition between my gradle build running in the background and the godot editor grabbing...