Igor Volkov

Results 30 comments of Igor Volkov

~~Why not `Supplier` then?~~ Seems there are multiple issues that propose moving to `java.time` classes. However the wording still doesn't make much sense - if we have to use `java.util.function.Supplier`...

Yes, exactly. I do see them when I select "Manage files" and they are not offline.

OK. I'll try the latest beta sometime later, see if it helps. Added the XML config here with all non-essential parts (nick, IP, ports, search history) redacted. [DCPlusPlus.xml.txt](https://github.com/airdcpp-web/airdcpp-webclient/files/4417101/DCPlusPlus.xml.txt)

I am afraid I cannot look into this issue further as the machine I was running the client on is offline for the time being. Regardless if this helps -...

Can confirm this issue on the latest development version (downloaded [here](https://web-builds.airdcpp.net/develop/)). I've kept the settings intact, i.e. restored them from the previous version. Operating system has been upgraded to Xubuntu...

By `javax.xml.bind.ValidationEventHandler#handleEvent` contract you can simply return `false` and JAXB will throw an exception: ``` unmarshaller.setEventHandler(event -> false); ``` However I wouldn't add this sort of handling by default, as...

I'll be able to look into that only next week, but IIRC the `ObjectMapper` instance used by this extension had no registered modules, but they were in classpath, since I...

That's actually the first thing I've tried before eventually resorting to `objectMapper.registerModule(new JavaTimeModule())`. For some reason no modules were found. I'll recheck this next week. I'm betting either `ServiceLoader` broken...

Yes, I understand that it's not in the default databind dependency. The error message in the issue post already suggests this. :wink: And yes, I have it in classpath. To...

Sorry, not at the moment, I have no access to either the code or the tests. But there's pretty much the original exception thrown by Jackson in my original post....