Hi Oleg,

thanks for the explanation.

> I did vandalize some of the
> exception messages you wrote originally to make them more consistent
> with the rest of HttpCore

no problem

> I do admit I have a rather unusual coding style.

So do I :-)

> I tend to use 'final'
> modifier for local variables and 

I tend to declare all methods final, unless I see a reason why anybody
should have to override them. I am still reluctant to using final for
local variables and even more so for method parameters, partly because
I have made bad experiences with the "const" modifier in C++. But I'm
already catching up on this. After all, compilers sometimes need such
hints in order to generate better code.

> like to mark instance variables with 'this.'

mine all have an underscore in their name

> I have no intention of forcing the same convention on anyone
> else, though

Neither do I. Keeping it consistent across modules should be fine.

cheers,
  Roland

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

Reply via email to