On 8/9/11 4:59 AM, [email protected] wrote:
@@ -263,7 +262,7 @@ public class DictionarySerializer {AttributesImpl dictionaryAttributes = new AttributesImpl(); - if (casesensitive) { + if (!casesensitive) { dictionaryAttributes.addAttribute("", "", ATTRIBUTE_CASE_SENSITIVE, "", String.valueOf(casesensitive)); }
A dictionary is either case sensitive, or it is not. We should always write the flag.
Lets remove the if around the addAttribute call. Jörn
