aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/whitespace/genericwhitespace/InputGenericWhitespaceAtStartOfTheLine.java
blob: 466a0f8136554c706f7eb8dae2220524301195b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.puppycrawl.tools.checkstyle.checks.whitespace.genericwhitespace;

import java.util.Collections;

class InputGenericWhitespaceAtStartOfTheLine {

    public String getConstructor(Class<?>... parameterTypes)
    {
        Collections.<Object
 >emptySet();
        Collections.
 <Object>emptySet();
        return "pitest makes me cry";
    }
}