google-java-format
google-java-format copied to clipboard
Difference between IntelliJ and Eclipse plugin
The number version 1.13 is not a version error it seems also to be the old version. one line constructor comment is formatted in Eclipse :
/** @param parent may be null for root */
public XMLPathImpl(@Nullable XMLPathImpl parent) {
...
}
And on IntelliJ :
/**
* @param parent may be null for root
*/
public XMLPathImpl(@Nullable XMLPathImpl parent) {
...
}