vb-chris

Results 4 issues of vb-chris

**Describe the bug** The following `@SuppressWarnings` annotations are removed by the plugin when the option _Remove unused warning annotation_ is enabled: ```java interface Bag { @SuppressWarnings("unchecked") void add(T... elements); }...

I'm trying to create a `MonetaryAmountFormat` that uses the currency unit symbol: MonetaryAmountFormat format = MonetaryFormats.getAmountFormat( AmountFormatQueryBuilder.of(Locale.GERMANY) .set(org.javamoney.moneta.format.CurrencyStyle.SYMBOL) .set("pattern", "#,##0.##¤") .build() ); The java/maven project has a dependency on moneta...

enhancement
deferred

### Checklist - [X] I am able to reproduce the bug with the [latest version](https://github.com/xdev-software/intellij-plugin-save-actions/releases/latest) - [X] I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/intellij-plugin-save-actions/issues) or [closed](https://github.com/xdev-software/intellij-plugin-save-actions/issues?q=is%3Aissue+is%3Aclosed)...

bug

When the configuration option `confluence.input.ancestorName` contains the name of a non-existing page, the following code https://github.com/docToolchain/docToolchain/blob/72e041f7925666fdeae41b3a7cf9d1d1b3151c79/core/src/main/groovy/org/docToolchain/tasks/Asciidoc2ConfluenceTask.groovy#L658 causes an `IndexOutOfBoundsException` (because `results` is empty): ``` FAILURE: Build failed with an exception....