aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/linelength/InputLongImportStatements.java
blob: 79585b29f6de8aab5c3702faa53d3972693cf74b (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 InputLongImportStatements {
    @Override
    public String toString() {
        return "This is very long line that should be logged because it is not import";
    }
}