On Sat, 28 Aug 2004, matthew.hawthorne wrote:

> > IMO, copy-paste reuse is the worst offense that a programmer can commit.
>
> I agree that it's bad news.
>
> But, I think the worst offense is this:
>
> try {
>
>    // ...
>
> } catch (Exception e) {
>    return null;
> }
>
> (shudder)

How lucky you've been. Have you never seen:

try {
    ...
} catch(Throwable t) {
    // ignore
}

??? :)

Hen


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to