Thanks, Pedro.

That style 
   if (someBooleanFunction() == false) {
      // ... do something
   }
is an error-prone coding style. But I have seen (and disliked) some recent
committers prefer that style. 

  Better style is
   if (!someBooleanFunction()) {
   }

-----
Pinaki Poddar
Chair, Apache OpenJPA Project
--
View this message in context: 
http://openjpa.208410.n2.nabble.com/jira-Created-OPENJPA-2101-PersistenceProductDerivation-overwrites-the-RemoteCommitProvider-configuran-tp7130338p7130580.html
Sent from the OpenJPA Developers mailing list archive at Nabble.com.

Reply via email to