I often find myself in the situation to have something like:

if( someCondition() )
   doSomething();
doSomeThingElse();

but what i want is something like this:

if( someCondition() )
{
   doSomething();
   doSomethingElse();
}

I try to mark the do-line and use surrond with. This does not
work, as doSomething() and doSomethingElse() are not on the same
level. I would expect it to work.

-- 
Mit freundlichen Gr��en
Stefan Mainz
--
Dynaware Systemberatung GmbH         Tel: +49 89 743130-15
Am Westpark 7                        Fax: +49 89 743130-05
81373 M�nchen                        mobil: +49 174 3019644
http://www.dynaware.de               mailto:[EMAIL PROTECTED]


_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to