google / google/google-java-format
Formatter repeatedly adds <p> tags to @code blocks inside Javadoc
- Langage dominant
- Java
- Étoiles
- 6.2k
- Forks
- 937
- Merge moyen
- 6 min
- PR mergées (30 j)
- 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
*
*
} }
*/
```
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.