blob: 5eb1247adc3393531d7d7a22b937b7f3b9122f63 [file] [log] [blame]
package com.siyeh.igtest.classmetrics;
public class ConstructorCountInspection
{
public ConstructorCountInspection(int i){}
public ConstructorCountInspection(boolean ch){}
public ConstructorCountInspection(char b){}
public ConstructorCountInspection(float d){}
public ConstructorCountInspection(double f){}
public ConstructorCountInspection(long s){}
}