Consider the following: ```groovy class Foo { static getBar() {} static test() { getBar() } } ``` Executing "Replace method call with property expression" (Ctrl+Shift+,) on "getBar" does not replace `getBar()` with `bar`.
Consider the following:
Executing "Replace method call with property expression" (Ctrl+Shift+,) on "getBar" does not replace
getBar()withbar.