Re: WirehoseChangeNotification

2006-03-16 Thread David Griffith
Mike, You da man. Thanks. That did it. Regards, Dave. On 16 Mar 2006, at 13:05, Mike Schrag wrote: if (currentProd.prodActive() == Boolean.TRUE) do this else do that == on Objects is asking for trouble ... if prodActive was set to new Boolean(true), you're out of luck. Us

Re: WirehoseChangeNotification

2006-03-16 Thread David Griffith
Well it wasn't, but fair enough, thanks for the tip! I'll try that and see if it helps. Have never had a problem with that before though. Regards, David. On 16 Mar 2006, at 13:05, Mike Schrag wrote: if (currentProd.prodActive() == Boolean.TRUE) do this else do that == on Ob

Re: WirehoseChangeNotification

2006-03-16 Thread Mike Schrag
if (currentProd.prodActive() == Boolean.TRUE) do this else do that == on Objects is asking for trouble ... if prodActive was set to new Boolean(true), you're out of luck. Use .equals instead. ___ Do not post admin requests to the list