blob: 210353d7cd5d833cb35956b7d801530e2f2b0335 [file] [log] [blame]
package com.siyeh.igtest.methodmetrics;
public class NestingDepthInspection
{
public void fooBar()
{
if(bar())
{
if(bar())
{
if(bar())
{
if(bar())
{
if(bar())
{
if(bar())
{
}
}
}
}
}
}
}
private boolean bar()
{
return true;
}
}