View Javadoc
1   /*
2   GenericWhitespace
3   
4   
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.whitespace.genericwhitespace;
8   
9   import java.util.Collections;
10  
11  class InputGenericWhitespaceAtStartOfTheLine {
12  
13      public String getConstructor(Class<?>... parameterTypes)
14      {
15          Collections.<Object
16   >emptySet(); // violation ''>' is preceded with whitespace.'
17          Collections.
18   <Object>emptySet(); // violation ''<' is preceded with whitespace.'
19          return "pitest makes me cry";
20      }
21  }