google-java-format icon indicating copy to clipboard operation
google-java-format copied to clipboard

Difference between IntelliJ and Eclipse plugin

Open vbeausei opened this issue 3 years ago • 0 comments

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) {
      ...
    }

vbeausei avatar Sep 22 '22 12:09 vbeausei