In the SchemaUnmarshaller constructor, there is a statement

if(_state != null) _state = new SchemaUnmarshallerState();

This looks like it was introduced after 0.9.4

This change broke my source code generation. Can someone change that to

if(_state == null) _state = new SchemaUnmarshallerState();

I am guessing that was supposed to be the change as the initial code was in 0.9.4.1 was
_state = new SchemaUnmarshallerState();

I have not written a test case yet. I am going to start getting familiar with the testing framework today. thanks,
Dean

----------------------------------------------------------- If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-dev

Reply via email to