blob: a649c23f19b5ef5eec8c5df9ab7e1e1ca30b6c42 [file] [log] [blame]
public class firstClass
{
int a;
Object o;
void myMethod()
{
if (i == 0)
{
doSomething();
doSomethingElse();
}
else
{
if (right())
doThis();
else if (left())
{
doThis();
doThat();
}
else if (up())
doThis();
else
{
doThat();
doThat();
}
lastThing();
}
}
}