blob: dfb17e4ea08b5d2428684775b0de67d81ec3f398 [file] [log] [blame]
public class firstClass
{
int a;
Object o;
void myMethod()
{
if (a < 2)
{
doSomething();
doSomethingElse();
}
else
{
doThisFinally();
}
}
}