> Torsten,
>
> Check, that you are using the correct version of AttributesImpl class.
> Sometimes this class can be found in various places and can be of different
> and old versions. AttributesImpl was buggy a while ago, but it was fixed and
> I'm using it in I18nTransformer (see translateAttribu
I think Vadim fixed a problem in the XMLFormTransformer, stating that
AttributesImpl has a deadlock problem when the constructor argument is null
or empty.
The fix was:
AttributesImpl atts;
if (attributes == null || attributes.getLength() == 0) {
atts = new Attribute
Torsten,
Check, that you are using the correct version of AttributesImpl class.
Sometimes this class can be found in various places and can be of different
and old versions. AttributesImpl was buggy a while ago, but it was fixed and
I'm using it in I18nTransformer (see translateAttributes() metho