Re: cocoon and new eclipse java compiler

2003-03-06 Thread Leszek Gawron
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

RE: cocoon and new eclipse java compiler

2003-03-06 Thread Robert Douglass
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