View Javadoc
1   /*
2   RedundantImport
3   
4   
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.imports.redundantimport;
8   
9   import static java.util.Arrays.asList;
10  
11  import java.util.List;
12  
13  public class InputRedundantImportWithoutWarnings {
14      private static final List<String> CONSTANTS = asList("a", "b");
15  }