-
Bug
-
Resolution: Fixed
-
P4
-
8
-
b22
-
Verified
In code: public void method(int i) { do {} while(--i > 0) }, where the do while loop is missing its ending semi colon, the end position of the do while falls after the ending curly of the method, so the text of the do while comes out as:
do {} while(--i > 0) }
instead of
do {} while(--i > 0)
do {} while(--i > 0) }
instead of
do {} while(--i > 0)