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.