Adam Gent

Results 419 comments of Adam Gent

@alexandrenavarro Can you paste the error output here. `javac` should not have a problem with you annotating the return of an enum method. Also can you paste the exact code...

> Ist it possible with the newest version? OOB, No. The above might not even possible with Handlebars. I recommend decorating the model (e.g. wrapping) or using JMustache Lambdas which...

For what its worth I ended up creating my own Reactive Streams implementation that is in pure Java and does not Auto Ack (also because its in Java is consequently...

It will take me a little time to get it opensource ready as its in our proprietary repository. That being said it is unfortunately Java so I'm not sure if...

I don’t use last npe all annotations but instead use our own. Specifically the maven property that points to which eclipse workspace project (not maven project coord but workspace) works...

It’s actually [PolyNull](https://checkerframework.org/api/org/checkerframework/checker/nullness/qual/PolyNull.html) which Eclipse NPE desperately needs to be honest. Ditto for Optional.orElse. Consequently I recommend avoiding defaultValue parameter methods if you can and instead use Objects.requireNonNullElse

@JohnLussmyer It actually is fairly painful to have defaultValue parameter as `@Nullable` in code base that favors `@NonNull`. @J-N-K is absolutely right in that those methods become useless. Ditto for...

@JohnLussmyer The problem is like I said before that it isn't `@Nullable` but `@PolyNull` for other frameworks. If Eclipse NP analysis adds `@PolyNull` and or you use Checker Framework you...

It might be best to see what JSpecify does in this regard. https://jspecify.dev/ JSpecify still hasn't implemented PolyNull yet. I'm not sure how they plan on handling it. I'm not...

> Since Eclipse turned down full support for EEA, I doubt they are interested in incorporating this project. @J-N-K Where did you read that or how do you know that?...