Jens Bannmann

Results 30 issues of Jens Bannmann

Silverchain fails to parse the following AG files, which is correct. However, the error messages are overly generic and vague. I included some examples of what I would consider a...

Example (invalid) AG: ``` import java.util.List; import java.util.function.UnaryOperator; $ADJUSTMENTS = adjusting(List list, UnaryOperator adjuster); // something else // more code ``` Silverchain rejects this with the following error: `Could not...

For an API entry point called `Foo`, Silverchain currently creates state interfaces called `FooN` and classes called `FooNImpl` (N = 0, 1, ...). As discussed in chat, I believe that...

## Part 1 of 4 Sometimes, a fluent API has methods where the number of parameters of a method matches those of a another method called earlier in the chain:...

The password parameters of `SCryptUtil.scrypt()` and `check()` are strings, which should not be used for passwords as explained [here](http://stackoverflow.com/q/8881291/7641). For developers that care about these nuances, it would be great...

In a multi-module project, I have set up generation of HTML and PDF files from asciidoc in the top level POM as follows: ```` org.asciidoctor asciidoctor-maven-plugin src/docs ${generated-docs} generate-html-docs process-asciidoc...

enhancement

Similar to online conferencing software like Zoom, Google Meet or MS Teams, sshx should distinguish user permission levels. This would greatly increase its usefulness in teaching settings (particularly with larger...

Requested feed: https://www.captain-futura.de/feed/ Birb responds: > Hm, I can't find a feed for this site. Taking the "for this site" part verbatim, I also tried to enter the site URL...

feature

There is a widespread practice of avoiding unnecessarily exposing your synchronization locks, i.e. using `synchronized(myPrivateField)` instead of `public synchronized void myMethod()`. (For background, see e.g. [this SO question](https://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java) or the...