Suggests to remove an argument from the method call if it is the same as default one.

Before:

def f(x: Int, y: Int = 0, z: Int) {}
f(1, y = 0, z = 1)

After:
def f(x: Int, y: Int = 0, z: Int) {}
f(1, z = 1)