Should I use an easy readable code like this
if (var.isServicePGM() || var.isStandardPGM())
{
//Much code
if (var.isServicePGM())
{
//Some code
}
else if (var.isStandardPGM())
{
//Some code
}
}
or should i use an faster code like this
if (var.isServicePGM() || var.isStandardPGM())
{
//Much code
if (var.isServicePGM())
{
//Some code
}
else
{
//Some code
}
}