Dag H. Wanvik (JIRA) wrote:

Minor nit-picks:

- EmbedDatabaseMetaData.java

  * Code readability:
if ((removeSYSIBMonly && isSYSIBM) || !removeSYSIBMonly) {
     <do something>
  }

  might be more readable as:

  if (removeSYSIBMonly && !isSYSIBM) {
       // do nothing
  } else {
       <do something>
  }


Another and IMHO even more readable alternative is:

if (isSYSIBM || !removeSYSIBMonly) {
      <do something>
}


--
Øystein

Reply via email to