[EMAIL PROTECTED] wrote:
+        if ( limit < 0 && offset >= 0 ) { // Offset only test
+            return;
+        }
Just a nit pick.  Following our coding standard this should be:

if (limit < 0 && offset >= 0) // Offset only test
{
   return;
}

i.e. no spaces within the if brackets and the open brace on a new line.

Scott


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

Reply via email to