aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/design/InputImmutableStarImport2.java
blob: 983272b6554146ddc64b22f1e7a8e35c62b0d841 (plain)
1
2
3
4
5
6
7
8
package com.puppycrawl.tools.checkstyle.checks.design;

import com.google.common.collect.*;
//config.immutableClassName=com.google.google.common.ImmutableSet
public final class InputImmutableStarImport2
{
    public final ImmutableSet<String> set = null; // No warning here
}