google / google/google-java-format
Inconsistent treatment of **/ at end of Javadoc
Abierto
- Lenguaje dominante
- Java
- Estrellas
- 6.2k
- Forks
- 937
- Merge medio
- 6 min
- PR fusionados (30 d)
- 3
Descripción
After formatting, this:
```
public class DoubleTrailingAsterisk {
/**
* Here is a multi-line comment that ends with a double asterisk.
**/
public void m1() {}
/** Here is a single-line comment that ends with a double asterisk. **/
public void m2() {}
}
```
becomes this:
```
public class DoubleTrailingAsterisk {
/** Here is a multi-line comment that ends with a double asterisk. */
public void m1() {}
/** Here is a single-line comment that ends with a double asterisk. * */
public void m2() {}
}
```
where the second Javadoc comment contains an extra "*".
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.