Reports methods in which a parameter appears to always be the same constant.

Example:

static void printPoint(int x, int y) { // x is always 0
  System.out.println(x + ", " + y);
}

public static void main(String[] args) {
  printPoint(0, 1);
  printPoint(0, 2);
}

The quick-fix inlines the constant value. This may simplify the method implementation.