Reports the fields of the java.lang.StringBuffer or java.lang.StringBuilder types. Such fields can grow without limit and are often the cause of memory leaks.

Example:

  
public class Example {
  StringBuilder builder = new StringBuilder();

  ...
}