On Tuesday 16 July 2002 10:25 am, Marcus Crafter wrote: > Why wouldn't it work ? It seems like AbstractContainer was built > to handle if the command queue was null (it checks for null before > queueing operations). > > Was there a technical reason why it wouldn't work, or did you mean > that the actual operation of passing null to the setCommandQueue() > method wasn't obvious enough ?
DefaultContext can't store a null. so setCommandQueue( null ) will just clear and prior stored value. Then in ContextManager.initializeCommandQueue() it will create the queue if none is found. (Which will be true since you can't store null :) -pete -- peter royal -> [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
