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.