google-java-format icon indicating copy to clipboard operation
google-java-format copied to clipboard

Reformats Java source code to comply with Google Java Style.

Results 223 google-java-format issues
Sort by recently updated
recently updated
newest added

### Automating Code Formatting with Spotless in Gradle By binding the `spotlessApply` goal to local execution, we can automatically fix formatting issues during a single Gradle build when triggered for...

The first annotation is indented as expected, but any additional annotations and the method parameter itself get an additional indent. I'd expect all lines to have the same indentation. To...

This class: ``` class Xyz { void foo() { int i = 0; switch (i) { case 18: { /* Break so we don't hit fall-through warning: */ break;/* ignore...