Reports methods that are named "main", but do not have the public static void main(String[]) signature.

Such methods may be confusing, as methods named "main" are expected to be application entry points.

Example:


  class Main {
    void main(String[] args) {} //a warning here because there are no "public static" modifiers
  }

A quick-fix that renames such methods is available only in the editor.