google / google/google-java-format
Inconsistent treatment of **/ at end of Javadoc
オープン
- 主要言語
- Java
- スター
- 6.2k
- フォーク
- 937
- 平均マージ
- 6分
- マージ済み PR(30日)
- 3
説明
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 "*".
コントリビューションガイド
評価
この issue はまだ評価されていません。