When Jrun creates a servlet from a jsp page called by a servlet it applies 
a code optimization that can break (and has broken) my code.

To wit:

if (a != null && b == null) {
   c=a;
   if (a == 7) {
        c = 4;
   }
}

jrun optimizes this to something like:

if ( b == null && a == 7) {
        c = 4;
  } else {
        c =a;
}

THIS SEEMS WRONG. If a == null the non - optimized code works, but the 
optimized code throws an exception.

Any comments??



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to