RE: [Fwd: RE: [OJB-developers] Oracle sequences]
Brought to you by:
thma
From: Bischof, R. <rai...@ed...> - 2001-10-26 11:23:22
|
With coding conventions I mean simple things like brackets, spaces ,etc if(b==1){ doIt(); } is somewhat different from if ( b == 1 ) { doIt(); } I personally prefer if( b==1 ){ doIt(); } Mixing this up within the code base of one single project is no good idea, I think. Since you have done 99.99% of the project you should adhere to your personal style and just define this as the standard for the project. Or do you use a code beautifier to have a defined standard? Im using the JRefactory tool within JBuilder. Regards rb -----Original Message----- From: Mahler Thomas [mailto:tho...@it...] Sent: Freitag, 26. Oktober 2001 13:14 To: Bischof, Rainer; Obj...@li... Cc: Mahler Thomas Subject: AW: [Fwd: RE: [OJB-developers] Oracle sequences] Hi Rainer, thanks a lot for this contribution. I will integrate it into the next release! I've been a bit sloppy with the SequenceManagerDefaultImpl and did not care to mark reusable methods as protected. I will fix this. Regarding coding conventions I've no fixed ideas. Maybe we should improve on this too... --Thomas |