Thomas Broyer

Results 214 comments of Thomas Broyer

I pushed my changes to a branch: https://github.com/tbroyer/gradle-nullaway-plugin/tree/truth-1.1.1 And the build indeed fails: https://github.com/tbroyer/gradle-nullaway-plugin/runs/1750932768 (**edit:** updated branch and link to build run, as I had forgotten to push the test...

It looks like calling the formatter once again on that resulting file will remove the extra line. Looks like an ordering issue between the formatter itself (which will remove the...

@alessandrococco Fwiw, have you tried putting `xml:space="preserve"` on the `configurationParameters` to tell the XML formatter not to reformat that section? (https://www.w3.org/TR/xml/#sec-white-space)

@mbruce Put `//` at the end of your lines to disable line joining: ```java public static final int[] defaultScalingList4x4Inter = { 10, 14, 14, 20, // 20, 20, 24, 24,...

Duplicate of #787 (and many many others)

Fwiw, the arguments used to run tests, and put into the JAR manifest, are a bit different, so I'd rather use those: ``` --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED...

Then disable the style-related checks in Checkstyle to prevent any "conflict" between the two tools, and only keep the non-style-related checks that you know won't conflict.