aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputConstantNames.java
blob: bfb07917a8dbe2ffae308f991ccfcef198809d1c (plain)
1
2
3
4
5
6
7
8
9
package com.puppycrawl.tools.checkstyle.checks.naming;

import java.io.ObjectStreamField;

public class InputConstantNames
{
    private static final long serialVersionUID = 1L; //should be ignored
    private static final ObjectStreamField[] serialPersistentFields = {}; // should be ignored too
}