Alois Baule
Alois Baule
This issue has already been done with PR https://github.com/authorjapps/zerocode/pull/604
@authorjapps PR https://github.com/authorjapps/zerocode/pull/564 and issue https://github.com/authorjapps/zerocode/issues/563 might be closed. jackson-dataformat-csv has already been upgraded to version 2.15.4.
Hi @a1shadows , I could have a look at that next week.
Hi @a1shadows GSON internally uses a [ToNumberPolicy.DOUBLE](https://www.javadoc.io/static/com.google.code.gson/gson/2.9.0/com.google.gson/com/google/gson/ToNumberPolicy.html#DOUBLE) and converts JSON numbers into Double. E.g. in kafka-testing/src/test/resources/kafka/produce/test_kafka_produce_int_key.json, the request contains an "Integer" key "101" in the produce operation, but during the...
@garydgregory In https://issues.apache.org/jira/projects/IO/issues/IO-783 Jochen Wiedmann pointed out, that filenames like "C:file.txt" without backslash are valid under Windows (relative path from current directory). But currently `FilenameUtils.getExtension("C:file.txt")` and `FilenameUtils.indexOfExtension("C:file.txt")` throw an IllegalArgumentException...
@jkbkupczyk You are right, deprecating the current method and adding a new one is the smarter solution. @garydgregory Do you agree? @baezzys Would you adjust your pull request or should...
@garydgregory If I understand [NTFS Streams](https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c54dec26-1551-4d3a-a0ea-4fa40f848eb3) correctly, then NTFS streams always contain two colons (or none) inside the filename and may not contain only a single colon. You may just...