Róbert Papp

Results 837 comments of Róbert Papp
trafficstars

Genius, it works for me too! Thank you very much for sharing @ctruchi! Note @ctruchi `@JacksonXmlText` doesn't have an effect with `setXMLTextElementName` when deserializing only. However it is required for...

@FasterXML team The default XMLTextElementName is `""`, but when `@JsonProperty("")` is encountered it actually substitutes to the name of the Kotlin property. There seems to be a conflict between: ```java...

Ugh, Google closed the related issue as obsolete.

@IvanRF you mean like this? https://github.com/moment/moment/pull/4183

Spaces are not supported: https://github.com/android/android-test/issues/956 might be the same issue with commas as that's the separator for listing explicit executions.

Careful, Robolectric might also have it on classpath. See https://robolectric.org/blog/2021/10/06/sharedTest/

I would recommend checking Espresso source code to see how they detect if the OS is Android. I'm sure okhttp/okio also has one too.

This would be useful for XML too. My current workaround is: ```kotlin data class SplitStringValues( /** * @sample `"a,bb,ccc"` */ val vals: String ) { constructor(vals: List) : this(vals.joinToString(",")) @JsonIgnore...

Hi there, newfound Actions fan here, just want to add my use case after upvoting all that I found above :) * multiple jobs in workflow, most of them publish...

Yep, choose a subset of all artifact ZIP files. This summarised nicely: https://github.com/actions/download-artifact/issues/6#issuecomment-620634668 Note: either your or this solution might bring us forward, because if there's any way to filter,...