Reports local variables or parameters that may have the final modifier added to their declaration.

예:


  ArrayList<Integer> list = new ArrayList();
  fill(list);
  return list;

빠른 수정을 적용한 후:


  final ArrayList<Integer> list = new ArrayList();
  fill(list);
  return list;

Use the inspection's options to define what kinds of parameters or local variables should be reported.