On czw, mar 06, 2003 at 09:44:17 +0100, Robert Douglass wrote:
> I had this when there was legacy code that we imported into Eclipse where
> people had used semicolons to close { } blocks. Here's an example that would
> cause an unreachable code:
>
> try {
> ...
> } catch (...) {...};
>
> The sem
I had this when there was legacy code that we imported into Eclipse where
people had used semicolons to close { } blocks. Here's an example that would
cause an unreachable code:
try {
...
} catch (...) {...};
The semicolon is superfluous, but doesn't cause a problem in this block:
if(){...};
be