google / google/google-java-format

Inconsistent treatment of **/ at end of Javadoc

Abierto
#67 2 comentarios 0 reacciones 0 asignados Ver en GitHub
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

Abrir la guía de contribución

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.