summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/test/com/siyeh/igtest/classlayout/AbstractClassWithoutAbstractMethodsInspection.java
blob: da5a8d9903501abf58a0b8d6df0a99e6ddea551e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.siyeh.igtest.classlayout;

public abstract class AbstractClassWithoutAbstractMethodsInspection
{
    public static final int CONSTANT = 1;

    public int barangus()
    {
        return CONSTANT;
    }

}