jhipster / prettier-java

Prettier Java Plugin
http://www.jhipster.tech/prettier-java/
Apache License 2.0
1.08k stars 103 forks source link

Support receiver parameter in method declaration #608

Closed TamasSzigeti closed 5 months ago

TamasSzigeti commented 1 year ago

What changed with this PR:

As it says on the tin

Example

    class Foo {
        public void bar(Foo this) {
            // noop
        }
        public void bar(Foo this, int y) {
            // noop
        }
    }

Relative issues or prs:

Fixes #607

CLAassistant commented 1 year ago

CLA assistant check
All committers have signed the CLA.

jtkiesel commented 5 months ago

This ended up being resolved by #642, so this PR can be closed.

TamasSzigeti commented 5 months ago

'pologies for the abandoned PR, thanks for fixing it elsewhere