1 /*
2 LineLength
3 fileExtensions = (default)
4 ignorePattern = (default)^(package|import) .*
5 max = (default)80
6
7
8 */
9
10 package com.puppycrawl.tools.checkstyle.checks.sizes.linelength;
11
12 import java.util. HashMap;
13 import java.util. HashSet;
14
15 public class InputLineLengthLongImportStatements {
16 @Override
17 public String toString() {
18 return "This is very long line that should be logged because it is not import"; // violation
19 }
20 }