Member Can be made Private (MCP)

Description:

MCP detects if a method or field is not used by any other class. It is suggested that these methods or fields are made private. This Audit does not check whether a public method or field can be made private since public methods and fields are considered part of external interface.

Example:

   class Array {
       void grow(int size) {
           // if this method is not called from outside of Array
           // it can be made private
       }
   }