View Javadoc
1   /*
2   UncommentedMain
3   excludedClasses = (default)^$
4   
5   
6   */
7   
8   package com.puppycrawl.tools.checkstyle.checks.uncommentedmain;
9   
10  class InputUncommentedMain4
11  {
12      // one more uncommented main
13      public static void main(int[] args)
14      {
15          System.identityHashCode("test1.main()");
16      }
17  }