sclassen

Results 48 comments of sclassen

JAXB has been removed in Java11. Am 5. August 2021 18:13:19 MESZ schrieb dhirenjoshi ***@***.***>: >I commented out all 5 dependencies . > >Looks like I can still use. >...

Hi Dhiren I finally found some time to look into the code. I took the liberty to delete a lot of code which was not reachable. Also many of your...

Hi Dhiren, I read most of the specification from https://docs.oracle.com/javase/7/docs/technotes/guides/jweb/security/deployment_rules.html There are still a few crucial parts missing in the implementation. I can support you in implementing this but I...

OK, so let's do this. I was thinking a bit and I would like to propose the following: - I will open issues for the things which need improvement or...

Thanks for reporting This is known but currently we cannot give an estimate on when this will be fixed.

While looking at #140 I have a very hard time to distinguish `successfully completed` and `not yet started` as they have almost the same color and the icons are small...

On https://github.com/adoptium/adoptium/issues/109 I only see MacOS x64 for Java 8 & 11 Can you give an update on the M1/ARM/aarch64 for Java 8 & 11

`filter()` is actually misleading term here as the operation executed here is mostly referred to as `map()`. So maybe all the filter need to be renamed to follow common naming...

My proposal for renaming (based on the naming in java streams and vavr.io): filer -> map pipe -> flatMap The code would then read as follows: ``` someCallToDbReturningAPromise(id) .map(t ->...