Björn Kautler
Björn Kautler
This of course only makes sense if #32 gets implemented, as then a server owner can configure the prefix how he likes without affecting other servers. Without #32 this would...
The handler uses `method.setAccessible(true)`, but currently only `public` command methods are found anyway, I'd either remove that unnecessary call or even better also support non-public methods by using `getDeclaredMethods()` instead...
Maybe use `BigInteger` instead of `Long` to support arbitrary long numbers in converted arguments for command handler methods.
Instead of `Object[]` allow `LongOrUserOrChannelOrString[]` (different name of course) that has `asUser()`, `asChannel()` and `asLong()` which return `Optional`s and `asString()` which returns the string.
If you might have a look at https://github.com/Vampire/svn2git/actions/runs/167642031 There are three tests failing Your action generates three annotations for that But the annotations are somewhat wrong Line and File are...
Following up the comment in #1141: > I don't recall. I think this was implemented by someone else and they didn't have the bandwidth to implement that component, so left...
Please support specifying additional modules that are added with `--add-modules` via `JavaModuleHacks` and not only for extra test modules. Of course you could also just `requires` them in your module...
Like the others previously, you overwrite the default JVM opts instead of adding to them. :-(
Please provide the possibility to have libs non-transitively on the classpath that will not end up on the module path. In my concrete situation we use `com.github.sarxos:webcam-capture:0.3.12` which depends on...
It would be really nice if you could generate the `module-info.java` with some builder style, something like (the syntax can be done like in my example due to Groovy DSL...