aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/linelength/InputLineLengthLongImportStatements.java
blob: 2897d5bc90668710e84e3692419910287a266b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.puppycrawl.tools.checkstyle.checks.sizes.linelength;

import com.puppycrawl.tools.checkstyle.grammars.comments.InputFullOfSinglelineComments;
import static com.puppycrawl.tools.checkstyle.grammars.comments.InputFullOfSinglelineComments.main;

public class InputLineLengthLongImportStatements {
    @Override
    public String toString() {
        return "This is very long line that should be logged because it is not import";
    }
}