Axel Howind

Results 32 issues of Axel Howind

Latest version has automatic modules and can be used in Java 9 projects (#114). However, this is not compatible with the jlink tool. __Steps to reproduce the problem (provide example...

SpotBugs 4.7.0 reports FL_FLOATS_AS_LOOP_COUNTERS twice for this code: ``` public static int ilog10(double x) { if (x >= 1.0) { int i = 0; while ((x /= 10.0) >= 1.0)...

The samples use the gradle application plugin, and so it should be possible to run by typing `./gradlew run` in the directory containing the project (i.e. hellofx). While compilation succeeds,...

**Describe the bug** when preserveLineNumbers is set, a closing brace is sometimes placed on the same line as a single line comment leading to sytactically incorrect code. **To Reproduce** Input:...

bug

I am trying to create a jpackage with two launchers like this: ``` launcher { name = 'DocDiff' moduleName = 'docdiff' mainClass = 'com.dua3.doc.app.docdiff.fx.Main' noConsole = true jvmArgs = [...

The exception is thrown when analysing code comparing java.util.logging.Level using the equality operator. ``` /Users/axel/Development/IdeaProjects/Library/utility/utility-swing/src/test/java/com/dua3/utility/swing/TestSwingComponents.java:126: error: An unhandled exception was thrown by the Error Prone static analysis plugin. if (level==Level.SEVERE)...

This adds the java.xml.bind dependency for Java 9+ and also JavaFX for JDK 11+. I can now compile FXLauncher under both JDK 8 and 11. The resulting jar should work...

I wanted to exclude certain bug patterns and used this in my exclusion file: ``` ``` This doesn't work on windows because of the different separators. Workaround is to use...

filters

### Describe the bug Spoon produces wrong output for try-with-resources without resource declaration. In the example, foo1() and bar1() that both contain a resource declaration produce correct results. The output...

bug