blob: 0e71fa92d6e60c2a2b729e3411144290060dc8d9 [file] [log] [blame]
package com.siyeh.igtest.methodmetrics;
public class MultipleReturnPointsInspection
{
public void fooBar()
{
if(barangus())
{
return;
}
}
private boolean barangus()
{
if(true)
{
return true;
}
return false;
}
}