another publishing message

Hi

Does anyone know what this message in the console.log file is a direct result of

2008-06-16 16:57:23,651 ERROR [PSAssemblerUtils] Found no value for key! 

Cheers
James

That message comes from the $rx.asmhelper.combine() function.

It’s trying to combine two maps, and there is a key in one of those maps that has no value either of the maps.

This function is called from within the standard slot macros, so perhaps you’re defining a key in one of the parameter maps without giving it a value.

I don’t know why this is an “error”, nothing really bad happens: the key is just not added to the combined map. Since it has no value, it wasn’t really doing anything anyway.

I hope this helps

Dave