google / google/google-java-format

Formatter repeatedly adds <p> tags to @code blocks inside Javadoc

Open
#254 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
6.2k
Forks
937
Avg merge
6m
Merged PRs (30d)
3

Description

The formatter repeatedly adds

tags to items inside an \@code block in Javadoc.

Expected: consistent output when the formatter is run repeatedly
Impact: Difficulty adding the formatter to our CI

```
$ cat Example.java

package com.foo.bar;

/**
* {@code public enum MyFile {
*
*

// A cool new thing
*
* } }
*/

$ java -jar google-java-format-1.5-all-deps.jar -i Example.java
$ cat Example.java

package com.foo.bar;

/**
* {@code public enum MyFile {
*
*

// A cool new thing
*
*

} }
*/

$ java -jar google-java-format-1.5-all-deps.jar -i Example.java
$ cat Example.java
package com.foo.bar;

/**
* {@code public enum MyFile {
*
*

// A cool new thing
*
*

} }
*/
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.